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

Filename/home/vagrant/kohaclone/Koha/Schema/Result/PrintersProfile.pm
StatementsExecuted 13 statements in 605µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11144µs50µsClass::C3::Componentised::::BEGIN@1.1791 Class::C3::Componentised::BEGIN@1.1791
11119µs32µsKoha::Schema::Result::PrintersProfile::::BEGIN@13Koha::Schema::Result::PrintersProfile::BEGIN@13
11112µs90µsKoha::Schema::Result::PrintersProfile::::BEGIN@16Koha::Schema::Result::PrintersProfile::BEGIN@16
1119µs18µsKoha::Schema::Result::PrintersProfile::::BEGIN@14Koha::Schema::Result::PrintersProfile::BEGIN@14
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
12100µs257µs
# spent 50µs (44+6) within Class::C3::Componentised::BEGIN@1.1791 which was called: # once (44µs+6µ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.1791 # spent 6µs making 1 call to utf8::import
2package Koha::Schema::Result::PrintersProfile;
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::PrintersProfile
10
11=cut
12
13253µs246µs
# spent 32µs (19+14) within Koha::Schema::Result::PrintersProfile::BEGIN@13 which was called: # once (19µs+14µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 32µs making 1 call to Koha::Schema::Result::PrintersProfile::BEGIN@13 # spent 14µs making 1 call to strict::import
14243µs228µs
# spent 18µs (9+9) within Koha::Schema::Result::PrintersProfile::BEGIN@14 which was called: # once (9µs+9µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 18µs making 1 call to Koha::Schema::Result::PrintersProfile::BEGIN@14 # spent 10µs making 1 call to warnings::import
15
162312µs2169µs
# spent 90µs (12+79) within Koha::Schema::Result::PrintersProfile::BEGIN@16 which was called: # once (12µs+79µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 90µs making 1 call to Koha::Schema::Result::PrintersProfile::BEGIN@16 # spent 79µs making 1 call to base::import
17
18=head1 TABLE: C<printers_profile>
19
20=cut
21
22123µs1374µs__PACKAGE__->table("printers_profile");
# spent 374µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
23
24=head1 ACCESSORS
25
26=head2 profile_id
27
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
31
32=head2 printer_name
33
34 data_type: 'varchar'
35 default_value: 'Default Printer'
36 is_nullable: 0
37 size: 40
38
39=head2 template_id
40
41 data_type: 'integer'
42 default_value: 0
43 is_nullable: 0
44
45=head2 paper_bin
46
47 data_type: 'varchar'
48 default_value: 'Bypass'
49 is_nullable: 0
50 size: 20
51
52=head2 offset_horz
53
54 data_type: 'float'
55 default_value: 0
56 is_nullable: 0
57
58=head2 offset_vert
59
60 data_type: 'float'
61 default_value: 0
62 is_nullable: 0
63
64=head2 creep_horz
65
66 data_type: 'float'
67 default_value: 0
68 is_nullable: 0
69
70=head2 creep_vert
71
72 data_type: 'float'
73 default_value: 0
74 is_nullable: 0
75
76=head2 units
77
78 data_type: 'char'
79 default_value: 'POINT'
80 is_nullable: 0
81 size: 20
82
83=head2 creator
84
85 data_type: 'char'
86 default_value: 'Labels'
87 is_nullable: 0
88 size: 15
89
90=cut
91
92128µs14.49ms__PACKAGE__->add_columns(
# spent 4.49ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns
93 "profile_id",
94 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
95 "printer_name",
96 {
97 data_type => "varchar",
98 default_value => "Default Printer",
99 is_nullable => 0,
100 size => 40,
101 },
102 "template_id",
103 { data_type => "integer", default_value => 0, is_nullable => 0 },
104 "paper_bin",
105 {
106 data_type => "varchar",
107 default_value => "Bypass",
108 is_nullable => 0,
109 size => 20,
110 },
111 "offset_horz",
112 { data_type => "float", default_value => 0, is_nullable => 0 },
113 "offset_vert",
114 { data_type => "float", default_value => 0, is_nullable => 0 },
115 "creep_horz",
116 { data_type => "float", default_value => 0, is_nullable => 0 },
117 "creep_vert",
118 { data_type => "float", default_value => 0, is_nullable => 0 },
119 "units",
120 { data_type => "char", default_value => "POINT", is_nullable => 0, size => 20 },
121 "creator",
122 {
123 data_type => "char",
124 default_value => "Labels",
125 is_nullable => 0,
126 size => 15,
127 },
128);
129
130=head1 PRIMARY KEY
131
132=over 4
133
134=item * L</profile_id>
135
136=back
137
138=cut
139
140116µs187µs__PACKAGE__->set_primary_key("profile_id");
# spent 87µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
141
142=head1 UNIQUE CONSTRAINTS
143
144=head2 C<printername>
145
146=over 4
147
148=item * L</printer_name>
149
150=item * L</template_id>
151
152=item * L</paper_bin>
153
154=item * L</creator>
155
156=back
157
158=cut
159
160118µs133µs__PACKAGE__->add_unique_constraint(
161 "printername",
162 ["printer_name", "template_id", "paper_bin", "creator"],
163);
164
165
166# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
167# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GJid4zfVF0MmMnUn3xyVbA
168
169
170# You can replace this text with custom content, and it will be preserved on regeneration
171113µs1;