← Index
Performance Profile   « block view • line view • sub view »
For /wise/base/deliv/dev/bin/getfix
  Run on Thu May 20 15:30:03 2010
Reported on Thu May 20 16:25:29 2010

File/wise/base/static/lib/perl5/site_perl/5.10.0/DBIx/Class/Core.pm
Statements Executed14
Total Time0.000169 seconds

Subroutines — ordered by exclusive time
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
00000DBIx::Class::Core::BEGIN

LineStmts.Exclusive
Time
Avg.Code
1package DBIx::Class::Core;
2
333.8e-51.3e-5use strict;
# spent 12µs making 1 call to strict::import
433.4e-51.1e-5use warnings;
# spent 29µs making 1 call to warnings::import
532.9e-59.7e-6no warnings 'qw';
# spent 24µs making 1 call to warnings::unimport
6
734.9e-51.6e-5use base qw/DBIx::Class/;
# spent 79µs making 1 call to base::import
8
911.4e-51.4e-5__PACKAGE__->load_components(qw/
# spent 40.2ms making 1 call to Class::C3::Componentised::load_components, max recursion depth 1
10 Relationship
11 InflateColumn
12 PK::Auto
13 PK
14 Row
15 ResultSourceProxy::Table/);
16
1715.0e-65.0e-61;
18
19=head1 NAME
20
21DBIx::Class::Core - Core set of DBIx::Class modules
22
23=head1 SYNOPSIS
24
25 # In your table classes
26 __PACKAGE__->load_components(qw/Core/);
27
28=head1 DESCRIPTION
29
30This class just inherits from the various modules that make up the
31L<DBIx::Class> core features. You almost certainly want these.
32
33The core modules currently are:
34
35=over 4
36
37=item L<DBIx::Class::Serialize::Storable>
38
39=item L<DBIx::Class::InflateColumn>
40
41=item L<DBIx::Class::Relationship>
42
43=item L<DBIx::Class::PK::Auto>
44
45=item L<DBIx::Class::PK>
46
47=item L<DBIx::Class::Row>
48
49=item L<DBIx::Class::ResultSourceProxy::Table>
50
51=back
52
53=head1 AUTHORS
54
55Matt S. Trout <mst@shadowcatsystems.co.uk>
56
57=head1 LICENSE
58
59You may distribute this code under the same terms as Perl itself.
60
61=cut