← 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/filter.pm
StatementsExecuted 10 statements in 188µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11126µs202µsKoha::QueryParser::Driver::PQF::query_plan::filter::::BEGIN@2Koha::QueryParser::Driver::PQF::query_plan::filter::BEGIN@2
11111µs23µsKoha::QueryParser::Driver::PQF::query_plan::filter::::BEGIN@5Koha::QueryParser::Driver::PQF::query_plan::filter::BEGIN@5
11110µs14µsKoha::QueryParser::Driver::PQF::query_plan::filter::::BEGIN@4Koha::QueryParser::Driver::PQF::query_plan::filter::BEGIN@4
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;
2338µs2379µs
# spent 202µs (26+176) within Koha::QueryParser::Driver::PQF::query_plan::filter::BEGIN@2 which was called: # once (26µs+176µs) by Koha::QueryParser::Driver::PQF::BEGIN@11 at line 2
use base 'OpenILS::QueryParser::query_plan::filter';
# spent 202µs making 1 call to Koha::QueryParser::Driver::PQF::query_plan::filter::BEGIN@2 # spent 176µs making 1 call to base::import
3
4327µs218µs
# spent 14µs (10+4) within Koha::QueryParser::Driver::PQF::query_plan::filter::BEGIN@4 which was called: # once (10µs+4µs) by Koha::QueryParser::Driver::PQF::BEGIN@11 at line 4
use strict;
# spent 14µs making 1 call to Koha::QueryParser::Driver::PQF::query_plan::filter::BEGIN@4 # spent 4µs making 1 call to strict::import
53120µs236µs
# spent 23µ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 23µ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;