← 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:08 2016

Filename/home/vagrant/kohaclone/Koha/Schema/Result/ItemsLastBorrower.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11124µs28µsClass::C3::Componentised::::BEGIN@1.367 Class::C3::Componentised::BEGIN@1.367
11111µs87µsKoha::Schema::Result::ItemsLastBorrower::::BEGIN@16Koha::Schema::Result::ItemsLastBorrower::BEGIN@16
11110µs18µsKoha::Schema::Result::ItemsLastBorrower::::BEGIN@13Koha::Schema::Result::ItemsLastBorrower::BEGIN@13
1118µs14µsKoha::Schema::Result::ItemsLastBorrower::::BEGIN@14Koha::Schema::Result::ItemsLastBorrower::BEGIN@14
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1231µs
# spent 28µs (24+3) within Class::C3::Componentised::BEGIN@1.367 which was called: # once (24µs+3µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 28µs making 1 call to Class::C3::Componentised::BEGIN@1.367 # spent 3µs making 1 call to utf8::import
2package Koha::Schema::Result::ItemsLastBorrower;
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::ItemsLastBorrower
10
11=cut
12
13226µs
# spent 18µs (10+8) within Koha::Schema::Result::ItemsLastBorrower::BEGIN@13 which was called: # once (10µs+8µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 18µs making 1 call to Koha::Schema::Result::ItemsLastBorrower::BEGIN@13 # spent 8µs making 1 call to strict::import
14219µs
# spent 14µs (8+5) within Koha::Schema::Result::ItemsLastBorrower::BEGIN@14 which was called: # once (8µs+5µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 14µs making 1 call to Koha::Schema::Result::ItemsLastBorrower::BEGIN@14 # spent 5µs making 1 call to warnings::import
15
162164µs
# spent 87µs (11+77) within Koha::Schema::Result::ItemsLastBorrower::BEGIN@16 which was called: # once (11µs+77µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 87µs making 1 call to Koha::Schema::Result::ItemsLastBorrower::BEGIN@16 # spent 77µs making 1 call to base::import
17
18=head1 TABLE: C<items_last_borrower>
19
20=cut
21
221314µs__PACKAGE__->table("items_last_borrower");
# spent 314µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
23
24=head1 ACCESSORS
25
26=head2 id
27
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
31
32=head2 itemnumber
33
34 data_type: 'integer'
35 is_foreign_key: 1
36 is_nullable: 0
37
38=head2 borrowernumber
39
40 data_type: 'integer'
41 is_foreign_key: 1
42 is_nullable: 0
43
44=head2 created_on
45
46 data_type: 'timestamp'
47 datetime_undef_if_invalid: 1
48 default_value: current_timestamp
49 is_nullable: 0
50
51=cut
52
531741µs__PACKAGE__->add_columns(
# spent 741µs making 1 call to DBIx::Class::ResultSourceProxy::add_columns
54 "id",
55 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
56 "itemnumber",
57 { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
58 "borrowernumber",
59 { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
60 "created_on",
61 {
62 data_type => "timestamp",
63 datetime_undef_if_invalid => 1,
64 default_value => \"current_timestamp",
65 is_nullable => 0,
66 },
67);
68
69=head1 PRIMARY KEY
70
71=over 4
72
73=item * L</id>
74
75=back
76
77=cut
78
79175µs__PACKAGE__->set_primary_key("id");
# spent 75µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
80
81=head1 UNIQUE CONSTRAINTS
82
83=head2 C<itemnumber>
84
85=over 4
86
87=item * L</itemnumber>
88
89=back
90
91=cut
92
931417µs__PACKAGE__->add_unique_constraint("itemnumber", ["itemnumber"]);
94
95=head1 RELATIONS
96
97=head2 borrowernumber
98
99Type: belongs_to
100
101Related object: L<Koha::Schema::Result::Borrower>
102
103=cut
104
1051374µs__PACKAGE__->belongs_to(
# spent 374µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
106 "borrowernumber",
107 "Koha::Schema::Result::Borrower",
108 { borrowernumber => "borrowernumber" },
109 { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
110);
111
112=head2 itemnumber
113
114Type: belongs_to
115
116Related object: L<Koha::Schema::Result::Item>
117
118=cut
119
12014.70ms__PACKAGE__->belongs_to(
# spent 4.70ms making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
121 "itemnumber",
122 "Koha::Schema::Result::Item",
123 { itemnumber => "itemnumber" },
124 { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
125);
126
127
128# Created by DBIx::Class::Schema::Loader v0.07040 @ 2015-10-02 12:33:33
129# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ByHKNZCEz4a1AqTnOJgUWA
130
131
132# You can replace this text with custom code or comments, and it will be preserved on regeneration
1331;