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

Filename/home/vagrant/kohaclone/Koha/Schema/Result/Localization.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11146µs52µsClass::C3::Componentised::::BEGIN@1.2685 Class::C3::Componentised::BEGIN@1.2685
11113µs27µsKoha::Schema::Result::Localization::::BEGIN@13Koha::Schema::Result::Localization::BEGIN@13
11110µs94µsKoha::Schema::Result::Localization::::BEGIN@16Koha::Schema::Result::Localization::BEGIN@16
11110µs22µ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
1257µs
# spent 52µs (46+5) within Class::C3::Componentised::BEGIN@1.2685 which was called: # once (46µs+5µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 52µs making 1 call to Class::C3::Componentised::BEGIN@1.2685 # spent 5µ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
13241µs
# spent 27µs (13+14) within Koha::Schema::Result::Localization::BEGIN@13 which was called: # once (13µs+14µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 27µs making 1 call to Koha::Schema::Result::Localization::BEGIN@13 # spent 14µs making 1 call to strict::import
14233µs
# spent 22µs (10+11) within Koha::Schema::Result::Localization::BEGIN@14 which was called: # once (10µs+11µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 22µs making 1 call to Koha::Schema::Result::Localization::BEGIN@14 # spent 11µs making 1 call to warnings::import
15
162178µs
# spent 94µs (10+84) within Koha::Schema::Result::Localization::BEGIN@16 which was called: # once (10µs+84µ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 84µs making 1 call to base::import
17
18=head1 TABLE: C<localization>
19
20=cut
21
221364µs__PACKAGE__->table("localization");
# spent 364µ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
57115.0ms__PACKAGE__->add_columns(
# spent 15.0ms 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
801100µs__PACKAGE__->set_primary_key("localization_id");
# spent 100µ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
98135µ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
1061;