NAME
   Redis::Dump - Backup and restore your Redis data to and from JSON.

VERSION
   version 0.004

DESCRIPTION
   Backup and restore your Redis data to and from JSON.

       $ redis-dump --server 127.0.0.1:6379 --filter foo
       {
              "foo" : "1",
       }

 run
   You can use as a module.

       use Redis::Dump;
       use Data::Dumper;

       my $dump = Redis::Dump({ server => '127.0.0.16379', filter => 'foo' });

       print Dumper( \$dump->run );

AUTHOR
   Thiago Rondon <[email protected]>

COPYRIGHT AND LICENSE
   This software is copyright (c) 2011 by Thiago Rondon.

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