← 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/Matchcheck.pm
StatementsExecuted 15 statements in 508µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11133µs37µsClass::C3::Componentised::::BEGIN@1.1006 Class::C3::Componentised::BEGIN@1.1006
11114µs22µsKoha::Schema::Result::Matchcheck::::BEGIN@14Koha::Schema::Result::Matchcheck::BEGIN@14
11110µs22µsKoha::Schema::Result::Matchcheck::::BEGIN@13Koha::Schema::Result::Matchcheck::BEGIN@13
11110µs85µ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
1272µs241µs
# spent 37µs (33+4) within Class::C3::Componentised::BEGIN@1.1006 which was called: # once (33µs+4µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 37µs making 1 call to Class::C3::Componentised::BEGIN@1.1006 # spent 4µ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
13241µs234µs
# spent 22µs (10+12) within Koha::Schema::Result::Matchcheck::BEGIN@13 which was called: # once (10µs+12µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 22µs making 1 call to Koha::Schema::Result::Matchcheck::BEGIN@13 # spent 12µs making 1 call to strict::import
14250µs230µs
# spent 22µs (14+8) within Koha::Schema::Result::Matchcheck::BEGIN@14 which was called: # once (14µs+8µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 22µs making 1 call to Koha::Schema::Result::Matchcheck::BEGIN@14 # spent 8µs making 1 call to warnings::import
15
162261µs2161µs
# spent 85µs (10+76) within Koha::Schema::Result::Matchcheck::BEGIN@16 which was called: # once (10µs+76µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 85µs making 1 call to Koha::Schema::Result::Matchcheck::BEGIN@16 # spent 76µs making 1 call to base::import
17
18=head1 TABLE: C<matchchecks>
19
20=cut
21
22120µs1376µs__PACKAGE__->table("matchchecks");
# spent 376µ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
52121µs11.58ms__PACKAGE__->add_columns(
# spent 1.58ms 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
73116µs175µs__PACKAGE__->set_primary_key("matchcheck_id");
# spent 75µ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
85110µs1325µs__PACKAGE__->belongs_to(
# spent 325µ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
10014µs1159µs__PACKAGE__->belongs_to(
# spent 159µ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
11513µs1158µs__PACKAGE__->belongs_to(
# spent 158µ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
12819µs1;