NAME

Cache::Memcached::Tie - Using Cache::Memcached as hash

SYNOPSIS

#!/usr/bin/perl -w
use strict;
use Cache::Memcached::Tie;

my %hash;
my $memd=tie %hash,'Cache::Memcached::Tie', {servers=>['192.168.0.77:11211']};
$hash{b}=['a',{b=>'a'}];
print $hash{'a'};
print $memd->get('b');

DESCRIPTION

Tie for memcached. Read `perldoc perltie`

AUTHOR

Andrew Kostenko <gugu@cpan.org>

COPYRIGHT AND LICENSE

GNU GPL