← 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/filter.pm
StatementsExecuted 10 statements in 208µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11116µs167µsKoha::QueryParser::Driver::PQF::query_plan::filter::::BEGIN@2Koha::QueryParser::Driver::PQF::query_plan::filter::BEGIN@2
11112µs15µsKoha::QueryParser::Driver::PQF::query_plan::filter::::BEGIN@4Koha::QueryParser::Driver::PQF::query_plan::filter::BEGIN@4
11111µs24µsKoha::QueryParser::Driver::PQF::query_plan::filter::::BEGIN@5Koha::QueryParser::Driver::PQF::query_plan::filter::BEGIN@5
0000s0sKoha::QueryParser::Driver::PQF::query_plan::filter::::target_syntaxKoha::QueryParser::Driver::PQF::query_plan::filter::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::filter;
2336µs2318µs
# spent 167µs (16+151) within Koha::QueryParser::Driver::PQF::query_plan::filter::BEGIN@2 which was called: # once (16µs+151µs) by Koha::QueryParser::Driver::PQF::BEGIN@11 at line 2
use base 'OpenILS::QueryParser::query_plan::filter';
# spent 167µs making 1 call to Koha::QueryParser::Driver::PQF::query_plan::filter::BEGIN@2 # spent 151µs making 1 call to base::import
3
4327µs218µs
# spent 15µs (12+3) within Koha::QueryParser::Driver::PQF::query_plan::filter::BEGIN@4 which was called: # once (12µs+3µs) by Koha::QueryParser::Driver::PQF::BEGIN@11 at line 4
use strict;
# spent 15µs making 1 call to Koha::QueryParser::Driver::PQF::query_plan::filter::BEGIN@4 # spent 3µs making 1 call to strict::import
53142µs236µs
# spent 24µs (11+12) within Koha::QueryParser::Driver::PQF::query_plan::filter::BEGIN@5 which was called: # once (11µs+12µs) by Koha::QueryParser::Driver::PQF::BEGIN@11 at line 5
use warnings;
# spent 24µs making 1 call to Koha::QueryParser::Driver::PQF::query_plan::filter::BEGIN@5 # spent 12µs making 1 call to warnings::import
6
7=head1 NAME
8
- -
22sub target_syntax {
23 my ($self, $server) = @_;
24 my $attributes = $self->plan->QueryParser->bib1_mapping_by_name( 'filter', $self->name, $server );
25
26 if ($attributes->{'target_syntax_callback'}) {
27 return $attributes->{'target_syntax_callback'}->($self->plan->QueryParser, $self->name, $self->args, $self->negate, $server);
28 } else {
29 return '';
30 }
31}
32
3313µs1;