← 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/SubscriptionFrequency.pm
StatementsExecuted 13 statements in 568µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111104µs112µsClass::C3::Componentised::::BEGIN@1.885 Class::C3::Componentised::BEGIN@1.885
11114µs119µsKoha::Schema::Result::SubscriptionFrequency::::BEGIN@16Koha::Schema::Result::SubscriptionFrequency::BEGIN@16
11114µs24µsKoha::Schema::Result::SubscriptionFrequency::::BEGIN@13Koha::Schema::Result::SubscriptionFrequency::BEGIN@13
1119µs18µsKoha::Schema::Result::SubscriptionFrequency::::BEGIN@14Koha::Schema::Result::SubscriptionFrequency::BEGIN@14
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
12104µs2120µs
# spent 112µs (104+8) within Class::C3::Componentised::BEGIN@1.885 which was called: # once (104µs+8µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 112µs making 1 call to Class::C3::Componentised::BEGIN@1.885 # spent 8µs making 1 call to utf8::import
2package Koha::Schema::Result::SubscriptionFrequency;
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::SubscriptionFrequency
10
11=cut
12
13242µs235µs
# spent 24µs (14+11) within Koha::Schema::Result::SubscriptionFrequency::BEGIN@13 which was called: # once (14µs+11µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 24µs making 1 call to Koha::Schema::Result::SubscriptionFrequency::BEGIN@13 # spent 11µs making 1 call to strict::import
14246µs226µs
# spent 18µs (9+8) within Koha::Schema::Result::SubscriptionFrequency::BEGIN@14 which was called: # once (9µs+8µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 18µs making 1 call to Koha::Schema::Result::SubscriptionFrequency::BEGIN@14 # spent 8µs making 1 call to warnings::import
15
162278µs2224µs
# spent 119µs (14+105) within Koha::Schema::Result::SubscriptionFrequency::BEGIN@16 which was called: # once (14µs+105µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 119µs making 1 call to Koha::Schema::Result::SubscriptionFrequency::BEGIN@16 # spent 105µs making 1 call to base::import
17
18=head1 TABLE: C<subscription_frequencies>
19
20=cut
21
22121µs1351µs__PACKAGE__->table("subscription_frequencies");
# spent 351µ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 description
33
34 data_type: 'text'
35 is_nullable: 0
36
37=head2 displayorder
38
39 data_type: 'integer'
40 is_nullable: 1
41
42=head2 unit
43
44 data_type: 'enum'
45 extra: {list => ["day","week","month","year"]}
46 is_nullable: 1
47
48=head2 unitsperissue
49
50 data_type: 'integer'
51 default_value: 1
52 is_nullable: 0
53
54=head2 issuesperunit
55
56 data_type: 'integer'
57 default_value: 1
58 is_nullable: 0
59
60=cut
61
62127µs11.85ms__PACKAGE__->add_columns(
# spent 1.85ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns
63 "id",
64 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
65 "description",
66 { data_type => "text", is_nullable => 0 },
67 "displayorder",
68 { data_type => "integer", is_nullable => 1 },
69 "unit",
70 {
71 data_type => "enum",
72 extra => { list => ["day", "week", "month", "year"] },
73 is_nullable => 1,
74 },
75 "unitsperissue",
76 { data_type => "integer", default_value => 1, is_nullable => 0 },
77 "issuesperunit",
78 { data_type => "integer", default_value => 1, is_nullable => 0 },
79);
80
81=head1 PRIMARY KEY
82
83=over 4
84
85=item * L</id>
86
87=back
88
89=cut
90
91118µs185µs__PACKAGE__->set_primary_key("id");
# spent 85µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
92
93=head1 RELATIONS
94
95=head2 subscriptions
96
97Type: has_many
98
99Related object: L<Koha::Schema::Result::Subscription>
100
101=cut
102
103111µs1347µs__PACKAGE__->has_many(
# spent 347µs making 1 call to DBIx::Class::Relationship::HasMany::has_many
104 "subscriptions",
105 "Koha::Schema::Result::Subscription",
106 { "foreign.periodicity" => "self.id" },
107 { cascade_copy => 0, cascade_delete => 0 },
108);
109
110
111# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-30 02:42:01
112# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kOm4+reRTMxUBfVJl4UPig
113
114
115# You can replace this text with custom code or comments, and it will be preserved on regeneration
116121µs1;