| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
#!/usr/bin/perl |
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
package KiokuDB::Set::Storage; |
|
4
|
12
|
|
|
12
|
|
6113
|
use Moose::Role; |
|
|
12
|
|
|
|
|
23
|
|
|
|
12
|
|
|
|
|
96
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
12
|
|
|
12
|
|
53059
|
use Set::Object; |
|
|
12
|
|
|
|
|
18554
|
|
|
|
12
|
|
|
|
|
545
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
12
|
|
|
12
|
|
66
|
use namespace::clean -except => 'meta'; |
|
|
12
|
|
|
|
|
20
|
|
|
|
12
|
|
|
|
|
81
|
|
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
with qw(KiokuDB::Set); |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
__PACKAGE__ |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
__END__ |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=pod |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 NAME |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
KiokuDB::Set::Storage - Role for L<KiokuDB::Set>s that are tied to storage. |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
# informational role, used internally |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
This role is informational, and implemented by L<KiokuDB::Set::Deferred> and |
|
29
|
|
|
|
|
|
|
L<KiokuDB::Set::Loaded> |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=cut |