← 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/BorrowerAttribute.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11130µs34µsClass::C3::Componentised::::BEGIN@1.1392 Class::C3::Componentised::BEGIN@1.1392
11110µs79µsKoha::Schema::Result::BorrowerAttribute::::BEGIN@16Koha::Schema::Result::BorrowerAttribute::BEGIN@16
11110µs20µsKoha::Schema::Result::BorrowerAttribute::::BEGIN@13Koha::Schema::Result::BorrowerAttribute::BEGIN@13
1119µs16µsKoha::Schema::Result::BorrowerAttribute::::BEGIN@14Koha::Schema::Result::BorrowerAttribute::BEGIN@14
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1238µs
# spent 34µs (30+4) within Class::C3::Componentised::BEGIN@1.1392 which was called: # once (30µs+4µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 34µs making 1 call to Class::C3::Componentised::BEGIN@1.1392 # spent 4µs making 1 call to utf8::import
2package Koha::Schema::Result::BorrowerAttribute;
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::BorrowerAttribute
10
11=cut
12
13230µs
# spent 20µs (10+10) within Koha::Schema::Result::BorrowerAttribute::BEGIN@13 which was called: # once (10µs+10µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 20µs making 1 call to Koha::Schema::Result::BorrowerAttribute::BEGIN@13 # spent 10µs making 1 call to strict::import
14224µs
# spent 16µs (9+8) within Koha::Schema::Result::BorrowerAttribute::BEGIN@14 which was called: # once (9µs+8µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 16µs making 1 call to Koha::Schema::Result::BorrowerAttribute::BEGIN@14 # spent 8µs making 1 call to warnings::import
15
162148µs
# spent 79µs (10+69) within Koha::Schema::Result::BorrowerAttribute::BEGIN@16 which was called: # once (10µs+69µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 79µs making 1 call to Koha::Schema::Result::BorrowerAttribute::BEGIN@16 # spent 69µs making 1 call to base::import
17
18=head1 TABLE: C<borrower_attributes>
19
20=cut
21
221339µs__PACKAGE__->table("borrower_attributes");
# spent 339µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
23
24=head1 ACCESSORS
25
26=head2 borrowernumber
27
28 data_type: 'integer'
29 is_foreign_key: 1
30 is_nullable: 0
31
32=head2 code
33
34 data_type: 'varchar'
35 is_foreign_key: 1
36 is_nullable: 0
37 size: 10
38
39=head2 attribute
40
41 data_type: 'varchar'
42 is_nullable: 1
43 size: 255
44
45=head2 password
46
47 data_type: 'varchar'
48 is_nullable: 1
49 size: 64
50
51=cut
52
531827µs__PACKAGE__->add_columns(
# spent 827µs making 1 call to DBIx::Class::ResultSourceProxy::add_columns
54 "borrowernumber",
55 { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
56 "code",
57 { data_type => "varchar", is_foreign_key => 1, is_nullable => 0, size => 10 },
58 "attribute",
59 { data_type => "varchar", is_nullable => 1, size => 255 },
60 "password",
61 { data_type => "varchar", is_nullable => 1, size => 64 },
62);
63
64=head1 RELATIONS
65
66=head2 borrowernumber
67
68Type: belongs_to
69
70Related object: L<Koha::Schema::Result::Borrower>
71
72=cut
73
741352µs__PACKAGE__->belongs_to(
# spent 352µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
75 "borrowernumber",
76 "Koha::Schema::Result::Borrower",
77 { borrowernumber => "borrowernumber" },
78 { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
79);
80
81=head2 code
82
83Type: belongs_to
84
85Related object: L<Koha::Schema::Result::BorrowerAttributeType>
86
87=cut
88
891634µs__PACKAGE__->belongs_to(
# spent 634µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
90 "code",
91 "Koha::Schema::Result::BorrowerAttributeType",
92 { code => "code" },
93 { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
94);
95
96
97# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
98# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9oRy+X25+b7vB03WSnpFTg
99
100
101# You can replace this text with custom content, and it will be preserved on regeneration
1021;