The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Dezi::Cache - simple in-memory cache class

SYNOPSIS

 use Dezi::Cache;
 my $cache = Dezi::Cache->new;
 $cache->add( foo => 'bar' );
 $cache->has( 'foo' ); # returns true
 $cache->get( 'foo' ); # returns 'bar'
 $cache->delete( 'foo' ); # removes 'foo' from cache and returns 'bar'

DESCRIPTION

Dezi::Cache is a simple in-memory caching class. It's basically just a Perl hash, but implemented as a class so that you can subclass it and use different storage (e.g. Cache::* modules).

METHODS

See Dezi::Class. Only new or overridden methods are documented here.

BUILD

Initialize the cache. Called internally by new(). You should not need to call this yourself.

cache([ hash_ref ])

Get/set the internal in-memory cache. The default is just a hash ref. Subclasses are encouraged to implement their own storage.

has( key )

Does key exist in cache.

get( key )

Returns value for key. Returns undef if has( key ) is false.

delete( key )

Delete key from cache.

add( key => value )

Add key to cache with value value.

AUTHOR

Peter Karman, <perl@peknet.com>

BUGS

Please report any bugs or feature requests to bug-swish-prog at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Dezi-App. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Dezi

You can also look for information at:

COPYRIGHT AND LICENSE

Copyright 2008-2018 by Peter Karman

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

http://swish-e.org/