← 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/Printer.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11128µs32µsClass::C3::Componentised::::BEGIN@1.1710 Class::C3::Componentised::BEGIN@1.1710
11110µs21µsKoha::Schema::Result::Printer::::BEGIN@13Koha::Schema::Result::Printer::BEGIN@13
1119µs18µsKoha::Schema::Result::Printer::::BEGIN@14Koha::Schema::Result::Printer::BEGIN@14
1116µs72µsKoha::Schema::Result::Printer::::BEGIN@16Koha::Schema::Result::Printer::BEGIN@16
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1236µs
# spent 32µs (28+4) within Class::C3::Componentised::BEGIN@1.1710 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.1710 # spent 4µs making 1 call to utf8::import
2package Koha::Schema::Result::Printer;
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::Printer
10
11=cut
12
13232µs
# spent 21µs (10+11) within Koha::Schema::Result::Printer::BEGIN@13 which was called: # once (10µs+11µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 21µs making 1 call to Koha::Schema::Result::Printer::BEGIN@13 # spent 11µs making 1 call to strict::import
14226µs
# spent 18µs (9+8) within Koha::Schema::Result::Printer::BEGIN@14 which was called: # once (9µs+8µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 18µs making 1 call to Koha::Schema::Result::Printer::BEGIN@14 # spent 8µs making 1 call to warnings::import
15
162138µs
# spent 72µs (6+66) within Koha::Schema::Result::Printer::BEGIN@16 which was called: # once (6µs+66µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 72µs making 1 call to Koha::Schema::Result::Printer::BEGIN@16 # spent 66µs making 1 call to base::import
17
18=head1 TABLE: C<printers>
19
20=cut
21
221339µs__PACKAGE__->table("printers");
# spent 339µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
23
24=head1 ACCESSORS
25
26=head2 printername
27
28 data_type: 'varchar'
29 default_value: (empty string)
30 is_nullable: 0
31 size: 40
32
33=head2 printqueue
34
35 data_type: 'varchar'
36 is_nullable: 1
37 size: 20
38
39=head2 printtype
40
41 data_type: 'varchar'
42 is_nullable: 1
43 size: 20
44
45=cut
46
4712.30ms__PACKAGE__->add_columns(
# spent 2.30ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns
48 "printername",
49 { data_type => "varchar", default_value => "", is_nullable => 0, size => 40 },
50 "printqueue",
51 { data_type => "varchar", is_nullable => 1, size => 20 },
52 "printtype",
53 { data_type => "varchar", is_nullable => 1, size => 20 },
54);
55
56=head1 PRIMARY KEY
57
58=over 4
59
60=item * L</printername>
61
62=back
63
64=cut
65
66178µs__PACKAGE__->set_primary_key("printername");
# spent 78µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
67
68
69# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
70# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OaIxwtdwn0TJLggwOygC2w
71
72
73# You can replace this text with custom content, and it will be preserved on regeneration
741;