NAME
Tie::Redis - Connect perl data structures to Redis
VERSION
version 0.1
SYNOPSIS
use Tie::Redis;
tie my %r, "Tie::Redis";
DESCRIPTION
This allows basic access to Redis from Perl using tie, so it looks just like a a hash or array.
Please think carefully before using this, the tie interface has quite a performance overhead and the error handling is not that great. Using AnyEvent::Redis or Redis directly is recommended.
SEE ALSO
App::redisp -- a redis shell in Perl and the main reason I wrote this module. AnyEvent::Redis -- the API this uses to access Redis. Redis -- another Redis API.
AUTHOR
David Leadbeater <dgl@dgl.cx>
COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by David Leadbeater.
This is free software; you can redistribute it and/or modify it under the terms of the Beerware license.