← Index
NYTProf Performance Profile   « line view »
For starman worker -M FindBin --max-requests 50 --workers 2 --user=kohadev-koha --group kohadev-koha --pid /var/run/koha/kohadev/plack.pid --daemonize --access-log /var/log/koha/kohadev/plack.log --error-log /var/log/koha/kohadev/plack-error.log -E deployment --socket /var/run/koha/kohadev/plack.sock /etc/koha/sites/kohadev/plack.psgi
  Run on Fri Jan 8 14:16:49 2016
Reported on Fri Jan 8 14:23:09 2016

Filename/home/vagrant/kohaclone/Koha/Schema/Result/Browser.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11145µs50µsClass::C3::Componentised::::BEGIN@1.2656 Class::C3::Componentised::BEGIN@1.2656
11111µs26µsKoha::Schema::Result::Browser::::BEGIN@13Koha::Schema::Result::Browser::BEGIN@13
11111µs102µsKoha::Schema::Result::Browser::::BEGIN@16Koha::Schema::Result::Browser::BEGIN@16
1119µs20µsKoha::Schema::Result::Browser::::BEGIN@14Koha::Schema::Result::Browser::BEGIN@14
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1255µs
# spent 50µs (45+5) within Class::C3::Componentised::BEGIN@1.2656 which was called: # once (45µs+5µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 50µs making 1 call to Class::C3::Componentised::BEGIN@1.2656 # spent 5µs making 1 call to utf8::import
2package Koha::Schema::Result::Browser;
3
4# Created by DBIx::Class::Schema::Loader
5# DO NOT MODIFY THE FIRST PART OF THIS FILE
6
7=head1 NAME
8
9Koha::Schema::Result::Browser
10
11=cut
12
13240µs
# spent 26µs (11+14) within Koha::Schema::Result::Browser::BEGIN@13 which was called: # once (11µs+14µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 26µs making 1 call to Koha::Schema::Result::Browser::BEGIN@13 # spent 14µs making 1 call to strict::import
14231µs
# spent 20µs (9+11) within Koha::Schema::Result::Browser::BEGIN@14 which was called: # once (9µs+11µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 20µs making 1 call to Koha::Schema::Result::Browser::BEGIN@14 # spent 11µs making 1 call to warnings::import
15
162193µs
# spent 102µs (11+91) within Koha::Schema::Result::Browser::BEGIN@16 which was called: # once (11µs+91µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 102µs making 1 call to Koha::Schema::Result::Browser::BEGIN@16 # spent 91µs making 1 call to base::import
17
18=head1 TABLE: C<browser>
19
20=cut
21
221356µs__PACKAGE__->table("browser");
# spent 356µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
23
24=head1 ACCESSORS
25
26=head2 level
27
28 data_type: 'integer'
29 is_nullable: 0
30
31=head2 classification
32
33 data_type: 'varchar'
34 is_nullable: 0
35 size: 20
36
37=head2 description
38
39 data_type: 'varchar'
40 is_nullable: 0
41 size: 255
42
43=head2 number
44
45 data_type: 'bigint'
46 is_nullable: 0
47
48=head2 endnode
49
50 data_type: 'tinyint'
51 is_nullable: 0
52
53=cut
54
55115.8ms__PACKAGE__->add_columns(
# spent 15.8ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns
56 "level",
57 { data_type => "integer", is_nullable => 0 },
58 "classification",
59 { data_type => "varchar", is_nullable => 0, size => 20 },
60 "description",
61 { data_type => "varchar", is_nullable => 0, size => 255 },
62 "number",
63 { data_type => "bigint", is_nullable => 0 },
64 "endnode",
65 { data_type => "tinyint", is_nullable => 0 },
66);
67
68
69# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
70# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:eMoAXr+/JrrwEjJ3dRRwoA
71
72
73# You can replace this text with custom content, and it will be preserved on regeneration
741;