← 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/AudioAlert.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11145µs50µsClass::C3::Componentised::::BEGIN@1.2361 Class::C3::Componentised::BEGIN@1.2361
11115µs113µsKoha::Schema::Result::AudioAlert::::BEGIN@16Koha::Schema::Result::AudioAlert::BEGIN@16
11112µs26µsKoha::Schema::Result::AudioAlert::::BEGIN@13Koha::Schema::Result::AudioAlert::BEGIN@13
11111µs22µsKoha::Schema::Result::AudioAlert::::BEGIN@14Koha::Schema::Result::AudioAlert::BEGIN@14
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.2361 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.2361 # spent 5µs making 1 call to utf8::import
2package Koha::Schema::Result::AudioAlert;
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::AudioAlert
10
11=cut
12
13240µs
# spent 26µs (12+14) within Koha::Schema::Result::AudioAlert::BEGIN@13 which was called: # once (12µs+14µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 26µs making 1 call to Koha::Schema::Result::AudioAlert::BEGIN@13 # spent 14µs making 1 call to strict::import
14233µs
# spent 22µs (11+11) within Koha::Schema::Result::AudioAlert::BEGIN@14 which was called: # once (11µs+11µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 22µs making 1 call to Koha::Schema::Result::AudioAlert::BEGIN@14 # spent 11µs making 1 call to warnings::import
15
162210µs
# spent 113µs (15+97) within Koha::Schema::Result::AudioAlert::BEGIN@16 which was called: # once (15µs+97µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 113µs making 1 call to Koha::Schema::Result::AudioAlert::BEGIN@16 # spent 97µs making 1 call to base::import
17
18=head1 TABLE: C<audio_alerts>
19
20=cut
21
221369µs__PACKAGE__->table("audio_alerts");
# spent 369µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
23
24=head1 ACCESSORS
25
26=head2 id
27
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
31
32=head2 precedence
33
34 data_type: 'smallint'
35 extra: {unsigned => 1}
36 is_nullable: 0
37
38=head2 selector
39
40 data_type: 'varchar'
41 is_nullable: 0
42 size: 255
43
44=head2 sound
45
46 data_type: 'varchar'
47 is_nullable: 0
48 size: 255
49
50=cut
51
5212.67ms__PACKAGE__->add_columns(
# spent 2.67ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns
53 "id",
54 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
55 "precedence",
56 { data_type => "smallint", extra => { unsigned => 1 }, is_nullable => 0 },
57 "selector",
58 { data_type => "varchar", is_nullable => 0, size => 255 },
59 "sound",
60 { data_type => "varchar", is_nullable => 0, size => 255 },
61);
62
63=head1 PRIMARY KEY
64
65=over 4
66
67=item * L</id>
68
69=back
70
71=cut
72
73192µs__PACKAGE__->set_primary_key("id");
# spent 92µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
74
75
76# Created by DBIx::Class::Schema::Loader v0.07040 @ 2015-08-19 08:01:06
77# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lPTnmrJd5V/X9fLebC8FHA
78
79
80# You can replace this text with custom code or comments, and it will be preserved on regeneration
811;