![]() |
![]()
| ![]() |
![]()
NAMECache::Memcached::Tie - Use Cache::Memcached::Fast like a hash. SYNOPSIS#!/usr/bin/perl -w use strict; use Cache::Memcached::Tie; my %hash; my $default_expiration_in_seconds = 60; my $memd = tie %hash,'Cache::Memcached::Tie', $default_expiration_in_seconds, {servers=>['192.168.0.77:11211']}; $hash{b} = ['a', { b => 'a' }]; print $hash{'a'}; print $memd->memd->get('b'); # Clears all data %hash = () #Also we can work with a slices: @hash{ 'a' .. 'z' } = ( 1 .. 26 ); print join ',', @hash{ 'a' .. 'e' }; DESCRIPTIONMemcached works like big dictionary... So why we can't use it as Perl hash? AUTHORAndrii Kostenko <andrey@kostenko.name> COPYRIGHT AND LICENSEThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|