← 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:01:18 2016
Reported on Fri Jan 8 13:01:36 2016

Filename/home/vagrant/kohaclone/Koha/Schema/Result/ActionLogs.pm
StatementsExecuted 10 statements in 518µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11165µs86µsKoha::Schema::Result::ActionLogs::::BEGIN@6Koha::Schema::Result::ActionLogs::BEGIN@6
11127µs41µsKoha::Schema::Result::ActionLogs::::BEGIN@7Koha::Schema::Result::ActionLogs::BEGIN@7
11122µs152µsKoha::Schema::Result::ActionLogs::::BEGIN@9Koha::Schema::Result::ActionLogs::BEGIN@9
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Koha::Schema::Result::ActionLogs;
2
3# Created by DBIx::Class::Schema::Loader
4# DO NOT MODIFY THE FIRST PART OF THIS FILE
5
62104µs2106µs
# spent 86µs (65+21) within Koha::Schema::Result::ActionLogs::BEGIN@6 which was called: # once (65µs+21µs) by Class::C3::Componentised::ensure_class_loaded at line 6
use strict;
# spent 86µs making 1 call to Koha::Schema::Result::ActionLogs::BEGIN@6 # spent 21µs making 1 call to strict::import
7267µs255µs
# spent 41µs (27+14) within Koha::Schema::Result::ActionLogs::BEGIN@7 which was called: # once (27µs+14µs) by Class::C3::Componentised::ensure_class_loaded at line 7
use warnings;
# spent 41µs making 1 call to Koha::Schema::Result::ActionLogs::BEGIN@7 # spent 14µs making 1 call to warnings::import
8
92271µs2281µs
# spent 152µs (22+129) within Koha::Schema::Result::ActionLogs::BEGIN@9 which was called: # once (22µs+129µs) by Class::C3::Componentised::ensure_class_loaded at line 9
use base 'DBIx::Class::Core';
# spent 152µs making 1 call to Koha::Schema::Result::ActionLogs::BEGIN@9 # spent 129µs making 1 call to base::import
10
11
12=head1 NAME
13
14Koha::Schema::Result::ActionLogs
15
16=cut
17
18125µs1325µs__PACKAGE__->table("action_logs");
# spent 325µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
19
20=head1 ACCESSORS
21
22=head2 action_id
23
24 data_type: 'integer'
25 is_auto_increment: 1
26 is_nullable: 0
27
28=head2 timestamp
29
30 data_type: 'timestamp'
31 default_value: current_timestamp
32 is_nullable: 0
33
34=head2 user
35
36 data_type: 'integer'
37 default_value: 0
38 is_nullable: 0
39
40=head2 module
41
42 data_type: 'text'
43 is_nullable: 1
44
45=head2 action
46
47 data_type: 'text'
48 is_nullable: 1
49
50=head2 object
51
52 data_type: 'integer'
53 is_nullable: 1
54
55=head2 info
56
57 data_type: 'text'
58 is_nullable: 1
59
60=cut
61
62122µs13.02ms__PACKAGE__->add_columns(
# spent 3.02ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns
63 "action_id",
64 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
65 "timestamp",
66 {
67 data_type => "timestamp",
68 default_value => \"current_timestamp",
69 is_nullable => 0,
70 },
71 "user",
72 { data_type => "integer", default_value => 0, is_nullable => 0 },
73 "module",
74 { data_type => "text", is_nullable => 1 },
75 "action",
76 { data_type => "text", is_nullable => 1 },
77 "object",
78 { data_type => "integer", is_nullable => 1 },
79 "info",
80 { data_type => "text", is_nullable => 1 },
81);
82119µs186µs__PACKAGE__->set_primary_key("action_id");
# spent 86µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
83
84
85# Created by DBIx::Class::Schema::Loader v0.07000 @ 2012-09-02 08:44:15
86# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9VN0SGNBYM/thO7QzQB4Bg
87
88
89# You can replace this text with custom content, and it will be preserved on regeneration
9019µs1;