← 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 11:58:52 2013
Reported on Tue Oct 15 12:02:28 2013

Filename/usr/share/koha/lib/Koha/QueryParser/Driver/PQF/query_plan/node/atom.pm
StatementsExecuted 10 statements in 158µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11117µs181µsKoha::QueryParser::Driver::PQF::query_plan::node::atom::::BEGIN@2Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@2
11113µs17µsKoha::QueryParser::Driver::PQF::query_plan::node::atom::::BEGIN@4Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@4
11112µs24µ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;
2341µs2345µs
# spent 181µs (17+164) within Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@2 which was called: # once (17µs+164µs) by Koha::QueryParser::Driver::PQF::BEGIN@14 at line 2
use base 'OpenILS::QueryParser::query_plan::node::atom';
# spent 181µs making 1 call to Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@2 # spent 164µs making 1 call to base::import
3
4328µs221µs
# spent 17µs (13+4) within Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@4 which was called: # once (13µs+4µs) by Koha::QueryParser::Driver::PQF::BEGIN@14 at line 4
use strict;
# spent 17µs making 1 call to Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@4 # spent 4µs making 1 call to strict::import
5386µs237µs
# spent 24µs (12+13) within Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@5 which was called: # once (12µs+13µs) by Koha::QueryParser::Driver::PQF::BEGIN@14 at line 5
use warnings;
# spent 24µs making 1 call to Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@5 # spent 13µ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;