← Index
NYTProf Performance Profile   « block view • line view • sub view »
For xt/tapper-mcp-scheduler-with-db-longrun.t
  Run on Tue May 22 17:18:39 2012
Reported on Tue May 22 17:23:14 2012

Filename/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3/Tapper/Schema/ReportsDB/Result/Tap.pm
StatementsExecuted 27 statements in 365µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11148µs119µsTapper::Schema::ReportsDB::Result::Tap::::BEGIN@9Tapper::Schema::ReportsDB::Result::Tap::BEGIN@9
11111µs50µsTapper::Schema::ReportsDB::Result::Tap::::BEGIN@15Tapper::Schema::ReportsDB::Result::Tap::BEGIN@15
11111µs11µsTapper::Schema::ReportsDB::Result::Tap::::BEGIN@2Tapper::Schema::ReportsDB::Result::Tap::BEGIN@2
11111µs71µsTapper::Schema::ReportsDB::Result::Tap::::BEGIN@9.29Tapper::Schema::ReportsDB::Result::Tap::BEGIN@9.29
11110µs26µsTapper::Schema::ReportsDB::Result::Tap::::BEGIN@11Tapper::Schema::ReportsDB::Result::Tap::BEGIN@11
1119µs66µsTapper::Schema::ReportsDB::Result::Tap::::BEGIN@13Tapper::Schema::ReportsDB::Result::Tap::BEGIN@13
1118µs12µsTapper::Schema::ReportsDB::Result::Tap::::BEGIN@10Tapper::Schema::ReportsDB::Result::Tap::BEGIN@10
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Tapper::Schema::ReportsDB::Result::Tap;
2
# spent 11µs within Tapper::Schema::ReportsDB::Result::Tap::BEGIN@2 which was called: # once (11µs+0s) by Class::C3::Componentised::ensure_class_loaded at line 4
BEGIN {
314µs $Tapper::Schema::ReportsDB::Result::Tap::AUTHORITY = 'cpan:AMD';
4131µs111µs}
5{
62900ns $Tapper::Schema::ReportsDB::Result::Tap::VERSION = '0.001';
7}
8
9670µs3250µs
# spent 71µs (11+60) within Tapper::Schema::ReportsDB::Result::Tap::BEGIN@9.29 which was called: # once (11µs+60µs) by Tapper::Schema::ReportsDB::Result::Tap::BEGIN@9 at line 9 # spent 119µs (48+71) within Tapper::Schema::ReportsDB::Result::Tap::BEGIN@9 which was called: # once (48µs+71µs) by Class::C3::Componentised::ensure_class_loaded at line 9
use 5.010;
# spent 119µs making 1 call to Tapper::Schema::ReportsDB::Result::Tap::BEGIN@9 # spent 71µs making 1 call to Tapper::Schema::ReportsDB::Result::Tap::BEGIN@9.29 # spent 60µs making 1 call to feature::import
10320µs217µs
# spent 12µs (8+4) within Tapper::Schema::ReportsDB::Result::Tap::BEGIN@10 which was called: # once (8µs+4µs) by Class::C3::Componentised::ensure_class_loaded at line 10
use strict;
# spent 12µs making 1 call to Tapper::Schema::ReportsDB::Result::Tap::BEGIN@10 # spent 4µs making 1 call to strict::import
11322µs241µs
# spent 26µs (10+16) within Tapper::Schema::ReportsDB::Result::Tap::BEGIN@11 which was called: # once (10µs+16µs) by Class::C3::Componentised::ensure_class_loaded at line 11
use warnings;
# spent 26µs making 1 call to Tapper::Schema::ReportsDB::Result::Tap::BEGIN@11 # spent 16µs making 1 call to warnings::import
12
13321µs2122µs
# spent 66µs (9+57) within Tapper::Schema::ReportsDB::Result::Tap::BEGIN@13 which was called: # once (9µs+57µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use parent 'DBIx::Class';
# spent 66µs making 1 call to Tapper::Schema::ReportsDB::Result::Tap::BEGIN@13 # spent 57µs making 1 call to parent::import
14
153104µs288µs
# spent 50µs (11+38) within Tapper::Schema::ReportsDB::Result::Tap::BEGIN@15 which was called: # once (11µs+38µs) by Class::C3::Componentised::ensure_class_loaded at line 15
use Data::Dumper;
# spent 50µs making 1 call to Tapper::Schema::ReportsDB::Result::Tap::BEGIN@15 # spent 38µs making 1 call to Exporter::import
16
17111µs1402µs__PACKAGE__->load_components(qw(InflateColumn::DateTime TimeStamp Core));
# spent 402µs making 1 call to Class::C3::Componentised::load_components
18116µs1470µs__PACKAGE__->table("tap");
# spent 470µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
19117µs11.57ms__PACKAGE__->add_columns
# spent 1.57ms making 1 call to DBIx::Class::TimeStamp::add_columns
20 (
21 "id", { data_type => "INT", default_value => undef, is_nullable => 0, size => 11, is_auto_increment => 1, },
22 "report_id", { data_type => "INT", default_value => undef, is_nullable => 0, size => 11, },
23 #
24 # raw tap
25 "tap", { data_type => "LONGBLOB", default_value => "", is_nullable => 0, },
26 "tap_is_archive", { data_type => "INT", default_value => undef, is_nullable => 1, size => 11, },
27 #
28 # parsed tap
29 "tapdom", { data_type => "LONGBLOB", default_value => "", is_nullable => 1, },
30 "created_at", { data_type => "DATETIME", default_value => undef, is_nullable => 0, set_on_create => 1, },
31 "updated_at", { data_type => "DATETIME", default_value => undef, is_nullable => 0, set_on_create => 1, set_on_update => 1, },
32 );
33
34117µs153µs__PACKAGE__->set_primary_key("id");
35
36111µs1255µs__PACKAGE__->belongs_to ( report => 'Tapper::Schema::ReportsDB::Result::Report', { 'foreign.id' => 'self.report_id' });
# spent 255µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
37
38121µs1;
39
40__END__