← 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:31:06 2016
Reported on Fri Jan 8 14:31:38 2016

Filename/home/vagrant/kohaclone/Koha/Schema/Result/ImportAuth.pm
StatementsExecuted 12 statements in 460µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11125µs28µsClass::C3::Componentised::::BEGIN@1.2137 Class::C3::Componentised::BEGIN@1.2137
11114µs75µsKoha::Schema::Result::ImportAuth::::BEGIN@16Koha::Schema::Result::ImportAuth::BEGIN@16
11113µs18µsKoha::Schema::Result::ImportAuth::::BEGIN@14Koha::Schema::Result::ImportAuth::BEGIN@14
11110µs18µsKoha::Schema::Result::ImportAuth::::BEGIN@13Koha::Schema::Result::ImportAuth::BEGIN@13
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1270µs231µs
# spent 28µs (25+3) within Class::C3::Componentised::BEGIN@1.2137 which was called: # once (25µs+3µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 28µs making 1 call to Class::C3::Componentised::BEGIN@1.2137 # spent 3µs making 1 call to utf8::import
2package Koha::Schema::Result::ImportAuth;
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::ImportAuth
10
11=cut
12
13237µs226µs
# spent 18µs (10+8) within Koha::Schema::Result::ImportAuth::BEGIN@13 which was called: # once (10µs+8µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 18µs making 1 call to Koha::Schema::Result::ImportAuth::BEGIN@13 # spent 8µs making 1 call to strict::import
14241µs224µs
# spent 18µs (13+6) within Koha::Schema::Result::ImportAuth::BEGIN@14 which was called: # once (13µs+6µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 18µs making 1 call to Koha::Schema::Result::ImportAuth::BEGIN@14 # spent 6µs making 1 call to warnings::import
15
162253µs2136µs
# spent 75µs (14+61) within Koha::Schema::Result::ImportAuth::BEGIN@16 which was called: # once (14µs+61µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 75µs making 1 call to Koha::Schema::Result::ImportAuth::BEGIN@16 # spent 61µs making 1 call to base::import
17
18=head1 TABLE: C<import_auths>
19
20=cut
21
22120µs1350µs__PACKAGE__->table("import_auths");
# spent 350µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
23
24=head1 ACCESSORS
25
26=head2 import_record_id
27
28 data_type: 'integer'
29 is_foreign_key: 1
30 is_nullable: 0
31
32=head2 matched_authid
33
34 data_type: 'integer'
35 is_nullable: 1
36
37=head2 control_number
38
39 data_type: 'varchar'
40 is_nullable: 1
41 size: 25
42
43=head2 authorized_heading
44
45 data_type: 'varchar'
46 is_nullable: 1
47 size: 128
48
49=head2 original_source
50
51 data_type: 'varchar'
52 is_nullable: 1
53 size: 25
54
55=cut
56
57120µs11.64ms__PACKAGE__->add_columns(
# spent 1.64ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns
58 "import_record_id",
59 { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
60 "matched_authid",
61 { data_type => "integer", is_nullable => 1 },
62 "control_number",
63 { data_type => "varchar", is_nullable => 1, size => 25 },
64 "authorized_heading",
65 { data_type => "varchar", is_nullable => 1, size => 128 },
66 "original_source",
67 { data_type => "varchar", is_nullable => 1, size => 25 },
68);
69
70=head1 RELATIONS
71
72=head2 import_record
73
74Type: belongs_to
75
76Related object: L<Koha::Schema::Result::ImportRecord>
77
78=cut
79
80112µs1283µs__PACKAGE__->belongs_to(
# spent 283µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
81 "import_record",
82 "Koha::Schema::Result::ImportRecord",
83 { import_record_id => "import_record_id" },
84 { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
85);
86
87
88# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
89# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:bm1ctlmYDh4qWUU95SLqBw
90
91
92# You can replace this text with custom content, and it will be preserved on regeneration
9318µs1;