File: Simple.pm

package info (click to toggle)
libtext-micromason-perl 2.13-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 624 kB
  • ctags: 180
  • sloc: perl: 3,222; makefile: 23
file content (72 lines) | stat: -rw-r--r-- 1,536 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package Text::MicroMason::Cache::Simple;

use strict;

######################################################################

sub new { my $class = shift; bless { @_ }, $class }

sub get { $_[0]->{ $_[1] } }

sub set { $_[0]->{ $_[1] } = $_[2] }

sub clear { %{ $_[0] } = () }

######################################################################

1;

__END__

######################################################################

=head1 NAME

Text::MicroMason::Cache::Simple - Basic Cache with Minimal Interface


=head1 DESCRIPTION

This trivial cache class just stores values in a hash. 

It does not perform any of the following functions: expiration, cache size limiting, flatening of complex keys, or deep copying of complex values.

=head2 Public Methods

=over 4

=item new()

  $cache = Text::MicroMason::Cache::Simple->new();

=item get()

  $value = $cache->get( $key );

Retrieves the value associated with this key, or undef if there is no value.

=item set()

  $cache->set( $key, $value );

Stores the provided value in association with this key. 

=item clear()

  $cache->clear();

Removes all data from the cache.

=back


=head1 SEE ALSO

For uses of this cache class, see L<Text::MicroMason::CompileCache>.

Additional cache classes are available in the Text::MicroMason::Cache:: namespace, or select other caching modules on CPAN that support the interface described in L<Cache::Cache>.

For distribution, installation, support, copyright and license 
information, see L<Text::MicroMason::Docs::ReadMe>.

=cut