← 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 13:01:18 2016
Reported on Fri Jan 8 13:01:35 2016

Filename/home/vagrant/kohaclone/Koha/Schema/Result/BranchTransferLimit.pm
StatementsExecuted 12 statements in 499µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11131µs35µsClass::C3::Componentised::::BEGIN@1.228 Class::C3::Componentised::BEGIN@1.228
11112µs93µsKoha::Schema::Result::BranchTransferLimit::::BEGIN@16Koha::Schema::Result::BranchTransferLimit::BEGIN@16
11110µs21µsKoha::Schema::Result::BranchTransferLimit::::BEGIN@13Koha::Schema::Result::BranchTransferLimit::BEGIN@13
1119µs18µsKoha::Schema::Result::BranchTransferLimit::::BEGIN@14Koha::Schema::Result::BranchTransferLimit::BEGIN@14
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1277µs239µs
# spent 35µs (31+4) within Class::C3::Componentised::BEGIN@1.228 which was called: # once (31µs+4µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 35µs making 1 call to Class::C3::Componentised::BEGIN@1.228 # 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
13242µs232µs
# spent 21µs (10+11) within Koha::Schema::Result::BranchTransferLimit::BEGIN@13 which was called: # once (10µs+11µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 21µs making 1 call to Koha::Schema::Result::BranchTransferLimit::BEGIN@13 # spent 11µs making 1 call to strict::import
14241µs226µs
# spent 18µs (9+8) within Koha::Schema::Result::BranchTransferLimit::BEGIN@14 which was called: # once (9µs+8µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 18µs making 1 call to Koha::Schema::Result::BranchTransferLimit::BEGIN@14 # spent 8µs making 1 call to warnings::import
15
162266µs2175µs
# spent 93µs (12+81) within Koha::Schema::Result::BranchTransferLimit::BEGIN@16 which was called: # once (12µs+81µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 93µs making 1 call to Koha::Schema::Result::BranchTransferLimit::BEGIN@16 # spent 81µs making 1 call to base::import
17
18=head1 TABLE: C<branch_transfer_limits>
19
20=cut
21
22124µs1378µs__PACKAGE__->table("branch_transfer_limits");
# spent 378µ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
61125µs12.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
99118µs185µs__PACKAGE__->set_primary_key("limitId");
# spent 85µ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
10717µs1;