← Index
NYTProf Performance Profile   « block view • line view • sub view »
For /usr/share/koha/opac/cgi-bin/opac/opac-search.pl
  Run on Tue Oct 15 17:10:45 2013
Reported on Tue Oct 15 17:12:54 2013

Filename/usr/share/koha/lib/Koha/QueryParser/Driver/PQF/query_plan/node/atom.pm
StatementsExecuted 10 statements in 148µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11116µs173µsKoha::QueryParser::Driver::PQF::query_plan::node::atom::::BEGIN@2Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@2
11112µs16µsKoha::QueryParser::Driver::PQF::query_plan::node::atom::::BEGIN@4Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@4
11111µs23µsKoha::QueryParser::Driver::PQF::query_plan::node::atom::::BEGIN@5Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@5
0000s0sKoha::QueryParser::Driver::PQF::query_plan::node::atom::::target_syntaxKoha::QueryParser::Driver::PQF::query_plan::node::atom::target_syntax
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Koha::QueryParser::Driver::PQF::query_plan::node::atom;
2336µs2329µs
# spent 173µs (16+156) within Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@2 which was called: # once (16µs+156µs) by Koha::QueryParser::Driver::PQF::BEGIN@14 at line 2
use base 'OpenILS::QueryParser::query_plan::node::atom';
# spent 173µs making 1 call to Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@2 # spent 156µs making 1 call to base::import
3
4327µs219µs
# spent 16µs (12+3) within Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@4 which was called: # once (12µs+3µs) by Koha::QueryParser::Driver::PQF::BEGIN@14 at line 4
use strict;
# spent 16µs making 1 call to Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@4 # spent 3µs making 1 call to strict::import
5383µs235µs
# spent 23µs (11+12) within Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@5 which was called: # once (11µs+12µs) by Koha::QueryParser::Driver::PQF::BEGIN@14 at line 5
use warnings;
# spent 23µs making 1 call to Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@5 # spent 12µs making 1 call to warnings::import
6
7=head1 NAME
8
- -
22sub target_syntax {
23 my ($self, $server) = @_;
24
25 my $content = $self->content;
26 $content =~ s/"/\\"/g;
27
28 return ' "' . $content . '" ';
29}
30
3112µs1;