← 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/BranchTransferLimit.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11126µs30µsClass::C3::Componentised::::BEGIN@1.1947 Class::C3::Componentised::BEGIN@1.1947
11110µs16µsKoha::Schema::Result::BranchTransferLimit::::BEGIN@14Koha::Schema::Result::BranchTransferLimit::BEGIN@14
1119µs18µsKoha::Schema::Result::BranchTransferLimit::::BEGIN@13Koha::Schema::Result::BranchTransferLimit::BEGIN@13
1119µs80µsKoha::Schema::Result::BranchTransferLimit::::BEGIN@16Koha::Schema::Result::BranchTransferLimit::BEGIN@16
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1234µs
# spent 30µs (26+4) within Class::C3::Componentised::BEGIN@1.1947 which was called: # once (26µs+4µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 30µs making 1 call to Class::C3::Componentised::BEGIN@1.1947 # spent 4µs making 1 call to utf8::import
2package Koha::Schema::Result::BranchTransferLimit;
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::BranchTransferLimit
10
11=cut
12
13227µs
# spent 18µs (9+9) within Koha::Schema::Result::BranchTransferLimit::BEGIN@13 which was called: # once (9µs+9µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 18µs making 1 call to Koha::Schema::Result::BranchTransferLimit::BEGIN@13 # spent 9µs making 1 call to strict::import
14224µs
# spent 16µs (10+7) within Koha::Schema::Result::BranchTransferLimit::BEGIN@14 which was called: # once (10µs+7µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 16µs making 1 call to Koha::Schema::Result::BranchTransferLimit::BEGIN@14 # spent 7µs making 1 call to warnings::import
15
162152µs
# spent 80µs (9+71) within Koha::Schema::Result::BranchTransferLimit::BEGIN@16 which was called: # once (9µs+71µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 80µs making 1 call to Koha::Schema::Result::BranchTransferLimit::BEGIN@16 # spent 71µs making 1 call to base::import
17
18=head1 TABLE: C<branch_transfer_limits>
19
20=cut
21
221313µs__PACKAGE__->table("branch_transfer_limits");
# spent 313µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
23
24=head1 ACCESSORS
25
26=head2 limitId
27
28 accessor: 'limit_id'
29 data_type: 'integer'
30 is_auto_increment: 1
31 is_nullable: 0
32
33=head2 toBranch
34
35 accessor: 'to_branch'
36 data_type: 'varchar'
37 is_nullable: 0
38 size: 10
39
40=head2 fromBranch
41
42 accessor: 'from_branch'
43 data_type: 'varchar'
44 is_nullable: 0
45 size: 10
46
47=head2 itemtype
48
49 data_type: 'varchar'
50 is_nullable: 1
51 size: 10
52
53=head2 ccode
54
55 data_type: 'varchar'
56 is_nullable: 1
57 size: 10
58
59=cut
60
6112.11ms__PACKAGE__->add_columns(
# spent 2.11ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns
62 "limitId",
63 {
64 accessor => "limit_id",
65 data_type => "integer",
66 is_auto_increment => 1,
67 is_nullable => 0,
68 },
69 "toBranch",
70 {
71 accessor => "to_branch",
72 data_type => "varchar",
73 is_nullable => 0,
74 size => 10,
75 },
76 "fromBranch",
77 {
78 accessor => "from_branch",
79 data_type => "varchar",
80 is_nullable => 0,
81 size => 10,
82 },
83 "itemtype",
84 { data_type => "varchar", is_nullable => 1, size => 10 },
85 "ccode",
86 { data_type => "varchar", is_nullable => 1, size => 10 },
87);
88
89=head1 PRIMARY KEY
90
91=over 4
92
93=item * L</limitId>
94
95=back
96
97=cut
98
99183µs__PACKAGE__->set_primary_key("limitId");
# spent 83µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
100
101
102# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-08-18 13:01:05
103# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:XPpJwcw5PRa7Fo7PRg32zg
104
105
106# You can replace this text with custom content, and it will be preserved on regeneration
1071;