← 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/Matchcheck.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11145µs50µsClass::C3::Componentised::::BEGIN@1.2855 Class::C3::Componentised::BEGIN@1.2855
11115µs32µsKoha::Schema::Result::Matchcheck::::BEGIN@13Koha::Schema::Result::Matchcheck::BEGIN@13
11112µs23µsKoha::Schema::Result::Matchcheck::::BEGIN@14Koha::Schema::Result::Matchcheck::BEGIN@14
11111µs97µsKoha::Schema::Result::Matchcheck::::BEGIN@16Koha::Schema::Result::Matchcheck::BEGIN@16
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1255µs
# spent 50µs (45+5) within Class::C3::Componentised::BEGIN@1.2855 which was called: # once (45µs+5µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 50µs making 1 call to Class::C3::Componentised::BEGIN@1.2855 # spent 5µs making 1 call to utf8::import
2package Koha::Schema::Result::Matchcheck;
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::Matchcheck
10
11=cut
12
13250µs
# spent 32µs (15+17) within Koha::Schema::Result::Matchcheck::BEGIN@13 which was called: # once (15µs+17µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 32µs making 1 call to Koha::Schema::Result::Matchcheck::BEGIN@13 # spent 17µs making 1 call to strict::import
14234µs
# spent 23µs (12+11) within Koha::Schema::Result::Matchcheck::BEGIN@14 which was called: # once (12µs+11µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 23µs making 1 call to Koha::Schema::Result::Matchcheck::BEGIN@14 # spent 11µs making 1 call to warnings::import
15
162183µs
# spent 97µs (11+86) within Koha::Schema::Result::Matchcheck::BEGIN@16 which was called: # once (11µs+86µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 97µs making 1 call to Koha::Schema::Result::Matchcheck::BEGIN@16 # spent 86µs making 1 call to base::import
17
18=head1 TABLE: C<matchchecks>
19
20=cut
21
221365µs__PACKAGE__->table("matchchecks");
# spent 365µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
23
24=head1 ACCESSORS
25
26=head2 matcher_id
27
28 data_type: 'integer'
29 is_foreign_key: 1
30 is_nullable: 0
31
32=head2 matchcheck_id
33
34 data_type: 'integer'
35 is_auto_increment: 1
36 is_nullable: 0
37
38=head2 source_matchpoint_id
39
40 data_type: 'integer'
41 is_foreign_key: 1
42 is_nullable: 0
43
44=head2 target_matchpoint_id
45
46 data_type: 'integer'
47 is_foreign_key: 1
48 is_nullable: 0
49
50=cut
51
52113.4ms__PACKAGE__->add_columns(
# spent 13.4ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns
53 "matcher_id",
54 { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
55 "matchcheck_id",
56 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
57 "source_matchpoint_id",
58 { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
59 "target_matchpoint_id",
60 { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
61);
62
63=head1 PRIMARY KEY
64
65=over 4
66
67=item * L</matchcheck_id>
68
69=back
70
71=cut
72
73199µs__PACKAGE__->set_primary_key("matchcheck_id");
# spent 99µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
74
75=head1 RELATIONS
76
77=head2 matcher
78
79Type: belongs_to
80
81Related object: L<Koha::Schema::Result::MarcMatcher>
82
83=cut
84
851323µs__PACKAGE__->belongs_to(
# spent 323µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
86 "matcher",
87 "Koha::Schema::Result::MarcMatcher",
88 { matcher_id => "matcher_id" },
89 { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
90);
91
92=head2 source_matchpoint
93
94Type: belongs_to
95
96Related object: L<Koha::Schema::Result::Matchpoint>
97
98=cut
99
1001165µs__PACKAGE__->belongs_to(
# spent 165µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
101 "source_matchpoint",
102 "Koha::Schema::Result::Matchpoint",
103 { matchpoint_id => "source_matchpoint_id" },
104 { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
105);
106
107=head2 target_matchpoint
108
109Type: belongs_to
110
111Related object: L<Koha::Schema::Result::Matchpoint>
112
113=cut
114
1151182µs__PACKAGE__->belongs_to(
# spent 182µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
116 "target_matchpoint",
117 "Koha::Schema::Result::Matchpoint",
118 { matchpoint_id => "target_matchpoint_id" },
119 { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
120);
121
122
123# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
124# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3G4E3DxiD6lCTP7a569BQg
125
126
127# You can replace this text with custom content, and it will be preserved on regeneration
1281;