NAME
CHI::Driver::MemcachedFast -- Distributed cache via memcached (memory cache daemon)
SYNOPSIS
use CHI;
my $cache = CHI->new(
driver => 'MemcachedFast',
servers => [ "10.0.0.15:11211", "10.0.0.15:11212", "/var/sock/memcached",
"10.0.0.17:11211", [ "10.0.0.17:11211", 3 ] ],
debug => 0,
compress_threshold => 10_000,
);
DESCRIPTION
This cache driver uses Cache::Memcached to store data in the specified memcached server(s).
CONSTRUCTOR OPTIONS
When using this driver, the following options can be passed to CHI->new() in addition to the CHI.
- cache_size
- page_size
- num_pages
- init_file
-
These options are passed directly to Cache::Memcached::Fast.
METHODS
- memd
-
Returns a handle to the underlying Cache::Memcached::Fast object. You can use this to call memcached-specific methods that are not supported by the general API, e.g.
$self->memd->incr("key"); my $stats = $self->memd->stats();
SEE ALSO
Cache::Memcached CHI
AUTHOR
Takatoshi Kitano <kitano.tk at gmail.com>
COPYRIGHT & LICENSE
Copyright (C) 2008 Dann
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.