← 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/Message.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111103µs109µsClass::C3::Componentised::::BEGIN@1.196 Class::C3::Componentised::BEGIN@1.196
11112µs20µsKoha::Schema::Result::Message::::BEGIN@13Koha::Schema::Result::Message::BEGIN@13
11110µs98µsKoha::Schema::Result::Message::::BEGIN@16Koha::Schema::Result::Message::BEGIN@16
1119µs15µsKoha::Schema::Result::Message::::BEGIN@14Koha::Schema::Result::Message::BEGIN@14
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
12116µs
# spent 109µs (103+7) within Class::C3::Componentised::BEGIN@1.196 which was called: # once (103µs+7µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 109µs making 1 call to Class::C3::Componentised::BEGIN@1.196 # spent 7µs making 1 call to utf8::import
2package Koha::Schema::Result::Message;
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::Message
10
11=cut
12
13228µs
# spent 20µs (12+8) within Koha::Schema::Result::Message::BEGIN@13 which was called: # once (12µs+8µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 20µs making 1 call to Koha::Schema::Result::Message::BEGIN@13 # spent 8µs making 1 call to strict::import
14221µs
# spent 15µs (9+6) within Koha::Schema::Result::Message::BEGIN@14 which was called: # once (9µs+6µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 15µs making 1 call to Koha::Schema::Result::Message::BEGIN@14 # spent 6µs making 1 call to warnings::import
15
162185µs
# spent 98µs (10+88) within Koha::Schema::Result::Message::BEGIN@16 which was called: # once (10µs+88µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 98µs making 1 call to Koha::Schema::Result::Message::BEGIN@16 # spent 88µs making 1 call to base::import
17
18=head1 TABLE: C<messages>
19
20=cut
21
221306µs__PACKAGE__->table("messages");
# spent 306µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
23
24=head1 ACCESSORS
25
26=head2 message_id
27
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
31
32=head2 borrowernumber
33
34 data_type: 'integer'
35 is_nullable: 0
36
37=head2 branchcode
38
39 data_type: 'varchar'
40 is_nullable: 1
41 size: 10
42
43=head2 message_type
44
45 data_type: 'varchar'
46 is_nullable: 0
47 size: 1
48
49=head2 message
50
51 data_type: 'text'
52 is_nullable: 0
53
54=head2 message_date
55
56 data_type: 'timestamp'
57 datetime_undef_if_invalid: 1
58 default_value: current_timestamp
59 is_nullable: 0
60
61=cut
62
6311.86ms__PACKAGE__->add_columns(
# spent 1.86ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns
64 "message_id",
65 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
66 "borrowernumber",
67 { data_type => "integer", is_nullable => 0 },
68 "branchcode",
69 { data_type => "varchar", is_nullable => 1, size => 10 },
70 "message_type",
71 { data_type => "varchar", is_nullable => 0, size => 1 },
72 "message",
73 { data_type => "text", is_nullable => 0 },
74 "message_date",
75 {
76 data_type => "timestamp",
77 datetime_undef_if_invalid => 1,
78 default_value => \"current_timestamp",
79 is_nullable => 0,
80 },
81);
82
83=head1 PRIMARY KEY
84
85=over 4
86
87=item * L</message_id>
88
89=back
90
91=cut
92
93183µs__PACKAGE__->set_primary_key("message_id");
# spent 83µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
94
95
96# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
97# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:iq+Uo9eMnkDgUQsRR6VFUA
98
99
100# You can replace this text with custom content, and it will be preserved on regeneration
1011;