← 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:53 2013

Filename/usr/share/koha/lib/Koha/QueryParser/Driver/PQF/query_plan/facet.pm
StatementsExecuted 10 statements in 151µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11128µs253µsKoha::QueryParser::Driver::PQF::query_plan::facet::::BEGIN@2Koha::QueryParser::Driver::PQF::query_plan::facet::BEGIN@2
11112µs16µsKoha::QueryParser::Driver::PQF::query_plan::facet::::BEGIN@4Koha::QueryParser::Driver::PQF::query_plan::facet::BEGIN@4
11110µs23µsKoha::QueryParser::Driver::PQF::query_plan::facet::::BEGIN@5Koha::QueryParser::Driver::PQF::query_plan::facet::BEGIN@5
0000s0sKoha::QueryParser::Driver::PQF::query_plan::facet::::target_syntaxKoha::QueryParser::Driver::PQF::query_plan::facet::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::facet;
2342µs2477µs
# spent 253µs (28+224) within Koha::QueryParser::Driver::PQF::query_plan::facet::BEGIN@2 which was called: # once (28µs+224µs) by Koha::QueryParser::Driver::PQF::BEGIN@10 at line 2
use base 'OpenILS::QueryParser::query_plan::facet';
# spent 253µs making 1 call to Koha::QueryParser::Driver::PQF::query_plan::facet::BEGIN@2 # spent 224µs making 1 call to base::import
3
4327µs220µs
# spent 16µs (12+4) within Koha::QueryParser::Driver::PQF::query_plan::facet::BEGIN@4 which was called: # once (12µs+4µs) by Koha::QueryParser::Driver::PQF::BEGIN@10 at line 4
use strict;
# spent 16µs making 1 call to Koha::QueryParser::Driver::PQF::query_plan::facet::BEGIN@4 # spent 4µs making 1 call to strict::import
5379µs235µs
# spent 23µs (10+13) within Koha::QueryParser::Driver::PQF::query_plan::facet::BEGIN@5 which was called: # once (10µs+13µs) by Koha::QueryParser::Driver::PQF::BEGIN@10 at line 5
use warnings;
# spent 23µs making 1 call to Koha::QueryParser::Driver::PQF::query_plan::facet::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 return '';
26}
27
2814µs1;