NAME
   CHI::Driver::Memcached -- Distributed cache via memcached (memory cache
   daemon)

SYNOPSIS
       use CHI;

       my $cache = CHI->new(
           driver => 'Memcached',
           namespace => 'products',
           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
   A CHI driver that uses Cache::Memcached to store data in the specified
   memcached server(s).

CONSTRUCTOR OPTIONS
   Namespace, appended with ":", is passed along to Cached::Memcached->new,
   along with any constructor options not recognized by CHI. For example:

   compress_threshold
   debug
   no_rehash
   servers
METHODS
   memd
       Returns a handle to the underlying Cache::Memcached 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();

UNSUPPORTED METHODS
   These standard CHI methods cannot currently be supported by memcached.

   dump_as_hash
   get_keys
   get_namespaces
   is_empty
   purge
SUPPORT AND DOCUMENTATION
   Questions and feedback are welcome, and should be directed to the
   perl-cache mailing list:

       http://groups.google.com/group/perl-cache-discuss

   Bugs and feature requests will be tracked at RT:

       http://rt.cpan.org/NoAuth/Bugs.html?Dist=CHI-Driver-Memcached

   The latest source code can be browsed and fetched at:

       http://github.com/jonswar/perl-chi-driver-memcached/tree/master
       git clone git://github.com/jonswar/perl-chi-driver-memcached.git

AUTHOR
   Jonathan Swartz

SEE ALSO
   CHI, Cache::Memcached

COPYRIGHT & LICENSE
   Copyright (C) 2007 Jonathan Swartz.

   CHI::Driver::Memcached is provided "as is" and without any express or
   implied warranties, including, without limitation, the implied
   warranties of merchantibility and fitness for a particular purpose.

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