Cache-RedisDB
view release on metacpan or search on metacpan
NAME
Cache::RedisDB - RedisDB based cache system
DESCRIPTION
This is just a wrapper around RedisDB to have a single Redis object and
connection per process. By default uses server redis://127.0.0.1, but
it may be overwritten by REDIS_CACHE_SERVER environment variable. It
transparently handles forks.
COMPATIBILITY AND REQUIREMENTS
Redis 2.6.12 and higher strongly recommended. Required if you want to
use extended options in ->set().
SYNOPSIS
use Cache::RedisDB;
Cache::RedisDB->set("namespace", "key", "value");
lib/Cache/RedisDB.pm view on Meta::CPAN
use Carp;
use RedisDB 2.14;
use Sereal qw(looks_like_sereal);
=head1 NAME
Cache::RedisDB - RedisDB based cache system
=head1 DESCRIPTION
This is just a wrapper around RedisDB to have a single Redis object and connection per process. By default uses server redis://127.0.0.1, but it may be overwritten by REDIS_CACHE_SERVER environment variable. It transparently handles forks.
=head1 COMPATIBILITY AND REQUIREMENTS
Redis 2.6.12 and higher strongly recommended. Required if you want to use
extended options in ->set().
=cut
our $VERSION = '0.13';
( run in 0.351 second using v1.01-cache-2.11-cpan-0a6323c29d9 )