← 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/Session.pm
StatementsExecuted 12 statements in 412µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11128µs32µsClass::C3::Componentised::::BEGIN@1.2213 Class::C3::Componentised::BEGIN@1.2213
11111µs22µsKoha::Schema::Result::Session::::BEGIN@13Koha::Schema::Result::Session::BEGIN@13
11110µs81µsKoha::Schema::Result::Session::::BEGIN@16Koha::Schema::Result::Session::BEGIN@16
1119µs18µsKoha::Schema::Result::Session::::BEGIN@14Koha::Schema::Result::Session::BEGIN@14
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1282µs236µs
# spent 32µs (28+4) within Class::C3::Componentised::BEGIN@1.2213 which was called: # once (28µs+4µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 32µs making 1 call to Class::C3::Componentised::BEGIN@1.2213 # spent 4µs making 1 call to utf8::import
2package Koha::Schema::Result::Session;
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::Session
10
11=cut
12
13242µs233µs
# spent 22µs (11+11) within Koha::Schema::Result::Session::BEGIN@13 which was called: # once (11µs+11µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 22µs making 1 call to Koha::Schema::Result::Session::BEGIN@13 # spent 11µs making 1 call to strict::import
14240µs226µs
# spent 18µs (9+9) within Koha::Schema::Result::Session::BEGIN@14 which was called: # once (9µs+9µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 18µs making 1 call to Koha::Schema::Result::Session::BEGIN@14 # spent 8µs making 1 call to warnings::import
15
162177µs2152µs
# spent 81µs (10+71) within Koha::Schema::Result::Session::BEGIN@16 which was called: # once (10µs+71µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 81µs making 1 call to Koha::Schema::Result::Session::BEGIN@16 # spent 71µs making 1 call to base::import
17
18=head1 TABLE: C<sessions>
19
20=cut
21
22120µs1301µs__PACKAGE__->table("sessions");
# spent 301µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
23
24=head1 ACCESSORS
25
26=head2 id
27
28 data_type: 'varchar'
29 is_nullable: 0
30 size: 32
31
32=head2 a_session
33
34 data_type: 'mediumtext'
35 is_nullable: 0
36
37=cut
38
39117µs1821µs__PACKAGE__->add_columns(
# spent 821µs making 1 call to DBIx::Class::ResultSourceProxy::add_columns
40 "id",
41 { data_type => "varchar", is_nullable => 0, size => 32 },
42 "a_session",
43 { data_type => "mediumtext", is_nullable => 0 },
44);
45
46=head1 PRIMARY KEY
47
48=over 4
49
50=item * L</id>
51
52=back
53
54=cut
55
56128µs175µs__PACKAGE__->set_primary_key("id");
# spent 75µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
57
58
59# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-23 13:21:59
60# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:gsbP76fskUOelxUl8nAVMQ
61
62
63# You can replace this text with custom content, and it will be preserved on regeneration
6415µs1;