← 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/CollectionsTracking.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11130µs35µsClass::C3::Componentised::::BEGIN@1.1283 Class::C3::Componentised::BEGIN@1.1283
11111µs23µsKoha::Schema::Result::CollectionsTracking::::BEGIN@13Koha::Schema::Result::CollectionsTracking::BEGIN@13
11111µs88µsKoha::Schema::Result::CollectionsTracking::::BEGIN@16Koha::Schema::Result::CollectionsTracking::BEGIN@16
1119µs19µsKoha::Schema::Result::CollectionsTracking::::BEGIN@14Koha::Schema::Result::CollectionsTracking::BEGIN@14
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1240µs
# spent 35µs (30+5) within Class::C3::Componentised::BEGIN@1.1283 which was called: # once (30µs+5µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 35µs making 1 call to Class::C3::Componentised::BEGIN@1.1283 # spent 5µs making 1 call to utf8::import
2package Koha::Schema::Result::CollectionsTracking;
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::CollectionsTracking
10
11=cut
12
13235µs
# spent 23µs (11+12) within Koha::Schema::Result::CollectionsTracking::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::CollectionsTracking::BEGIN@13 # spent 12µs making 1 call to strict::import
14229µs
# spent 19µs (9+10) within Koha::Schema::Result::CollectionsTracking::BEGIN@14 which was called: # once (9µs+10µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 19µs making 1 call to Koha::Schema::Result::CollectionsTracking::BEGIN@14 # spent 10µs making 1 call to warnings::import
15
162165µs
# spent 88µs (11+77) within Koha::Schema::Result::CollectionsTracking::BEGIN@16 which was called: # once (11µs+77µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 88µs making 1 call to Koha::Schema::Result::CollectionsTracking::BEGIN@16 # spent 77µs making 1 call to base::import
17
18=head1 TABLE: C<collections_tracking>
19
20=cut
21
221356µs__PACKAGE__->table("collections_tracking");
# spent 356µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
23
24=head1 ACCESSORS
25
26=head2 collections_tracking_id
27
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
31
32=head2 colId
33
34 accessor: 'col_id'
35 data_type: 'integer'
36 default_value: 0
37 is_nullable: 0
38
39collections.colId
40
41=head2 itemnumber
42
43 data_type: 'integer'
44 default_value: 0
45 is_nullable: 0
46
47items.itemnumber
48
49=cut
50
5111.34ms__PACKAGE__->add_columns(
# spent 1.34ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns
52 "collections_tracking_id",
53 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
54 "colId",
55 {
56 accessor => "col_id",
57 data_type => "integer",
58 default_value => 0,
59 is_nullable => 0,
60 },
61 "itemnumber",
62 { data_type => "integer", default_value => 0, is_nullable => 0 },
63);
64
65=head1 PRIMARY KEY
66
67=over 4
68
69=item * L</collections_tracking_id>
70
71=back
72
73=cut
74
75184µs__PACKAGE__->set_primary_key("collections_tracking_id");
# spent 84µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
76
77
78# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-08-18 13:01:05
79# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:s8ZFSmMJt313bz3XdlhITQ
80
81
82# You can replace this text with custom code or comments, and it will be preserved on regeneration
831;