← 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:50:58 2016
Reported on Fri Jan 8 13:51:28 2016

Filename/home/vagrant/kohaclone/Koha/Schema/Result/Localization.pm
StatementsExecuted 13 statements in 489µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11131µs36µsClass::C3::Componentised::::BEGIN@1.2583 Class::C3::Componentised::BEGIN@1.2583
11112µs94µsKoha::Schema::Result::Localization::::BEGIN@16Koha::Schema::Result::Localization::BEGIN@16
11111µs23µsKoha::Schema::Result::Localization::::BEGIN@13Koha::Schema::Result::Localization::BEGIN@13
11110µs19µsKoha::Schema::Result::Localization::::BEGIN@14Koha::Schema::Result::Localization::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µs240µs
# spent 36µs (31+4) within Class::C3::Componentised::BEGIN@1.2583 which was called: # once (31µs+4µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 36µs making 1 call to Class::C3::Componentised::BEGIN@1.2583 # spent 4µs making 1 call to utf8::import
2package Koha::Schema::Result::Localization;
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::Localization
10
11=cut
12
13243µs235µs
# spent 23µs (11+12) within Koha::Schema::Result::Localization::BEGIN@13 which was called: # once (11µs+12µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 23µs making 1 call to Koha::Schema::Result::Localization::BEGIN@13 # spent 12µs making 1 call to strict::import
14242µs228µs
# spent 19µs (10+9) within Koha::Schema::Result::Localization::BEGIN@14 which was called: # once (10µs+9µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 19µs making 1 call to Koha::Schema::Result::Localization::BEGIN@14 # spent 9µs making 1 call to warnings::import
15
162229µs2176µs
# spent 94µs (12+82) within Koha::Schema::Result::Localization::BEGIN@16 which was called: # once (12µs+82µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 94µs making 1 call to Koha::Schema::Result::Localization::BEGIN@16 # spent 82µs making 1 call to base::import
17
18=head1 TABLE: C<localization>
19
20=cut
21
22121µs1344µs__PACKAGE__->table("localization");
# spent 344µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
23
24=head1 ACCESSORS
25
26=head2 localization_id
27
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
31
32=head2 entity
33
34 data_type: 'varchar'
35 is_nullable: 0
36 size: 16
37
38=head2 code
39
40 data_type: 'varchar'
41 is_nullable: 0
42 size: 64
43
44=head2 lang
45
46 data_type: 'varchar'
47 is_nullable: 0
48 size: 25
49
50=head2 translation
51
52 data_type: 'text'
53 is_nullable: 1
54
55=cut
56
57122µs13.37ms__PACKAGE__->add_columns(
# spent 3.37ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns
58 "localization_id",
59 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
60 "entity",
61 { data_type => "varchar", is_nullable => 0, size => 16 },
62 "code",
63 { data_type => "varchar", is_nullable => 0, size => 64 },
64 "lang",
65 { data_type => "varchar", is_nullable => 0, size => 25 },
66 "translation",
67 { data_type => "text", is_nullable => 1 },
68);
69
70=head1 PRIMARY KEY
71
72=over 4
73
74=item * L</localization_id>
75
76=back
77
78=cut
79
80126µs189µs__PACKAGE__->set_primary_key("localization_id");
# spent 89µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
81
82=head1 UNIQUE CONSTRAINTS
83
84=head2 C<entity_code_lang>
85
86=over 4
87
88=item * L</entity>
89
90=item * L</code>
91
92=item * L</lang>
93
94=back
95
96=cut
97
98118µs132µs__PACKAGE__->add_unique_constraint("entity_code_lang", ["entity", "code", "lang"]);
99
100
101# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-10-27 12:51:15
102# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:bYEuhKEE13txmjNiRHk8tA
103
104
105# You can replace this text with custom code or comments, and it will be preserved on regeneration
10619µs1;