← 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/ActionLogs.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11179µs100µsKoha::Schema::Result::ActionLogs::::BEGIN@6Koha::Schema::Result::ActionLogs::BEGIN@6
11117µs30µsKoha::Schema::Result::ActionLogs::::BEGIN@7Koha::Schema::Result::ActionLogs::BEGIN@7
11112µs111µ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
62122µs
# spent 100µs (79+21) within Koha::Schema::Result::ActionLogs::BEGIN@6 which was called: # once (79µs+21µs) by Class::C3::Componentised::ensure_class_loaded at line 6
use strict;
# spent 100µs making 1 call to Koha::Schema::Result::ActionLogs::BEGIN@6 # spent 22µs making 1 call to strict::import
7243µs
# spent 30µs (17+13) within Koha::Schema::Result::ActionLogs::BEGIN@7 which was called: # once (17µs+13µs) by Class::C3::Componentised::ensure_class_loaded at line 7
use warnings;
# spent 30µs making 1 call to Koha::Schema::Result::ActionLogs::BEGIN@7 # spent 13µs making 1 call to warnings::import
8
92211µs
# spent 111µs (12+100) within Koha::Schema::Result::ActionLogs::BEGIN@9 which was called: # once (12µs+100µs) by Class::C3::Componentised::ensure_class_loaded at line 9
use base 'DBIx::Class::Core';
# spent 111µs making 1 call to Koha::Schema::Result::ActionLogs::BEGIN@9 # spent 100µs making 1 call to base::import
10
11
12=head1 NAME
13
14Koha::Schema::Result::ActionLogs
15
16=cut
17
181380µs__PACKAGE__->table("action_logs");
# spent 380µ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
621609µs__PACKAGE__->add_columns(
# spent 609µs 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);
82171µs__PACKAGE__->set_primary_key("action_id");
# spent 71µ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
901;