AnyEvent-Redis

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

Revision history for Perl extension AnyEvent::Redis

0.24  Wed 12 Dec 16:18:42 GMT 2012
         - Many error handling improvements (chip)
         - Reconnect logic (leedo)
         - Fix for tests with redis-server 2.6 (typester)
         - Fix leak of connections (dgl)

0.23  Wed 12 Jan 2011 23:34:58 GMT
         - Fix to always allow condvar as final param (chip)

0.23_01  Wed Dec 15 20:17:42 PST 2010
         - Added character encoding support (mfischer, dgl)

META.yml  view on Meta::CPAN

  directory:
    - inc
    - t
    - xt
requires:
  AnyEvent: 0
  perl: 5.8.1
resources:
  license: http://dev.perl.org/licenses/
  repository: git://github.com/miyagawa/AnyEvent-Redis
version: 0.24

lib/AnyEvent/Redis.pm  view on Meta::CPAN

package AnyEvent::Redis;

use strict;
use 5.008_001;
our $VERSION = '0.24';

use constant DEBUG => $ENV{ANYEVENT_REDIS_DEBUG};
use AnyEvent;
use AnyEvent::Handle;
use AnyEvent::Socket;
use AnyEvent::Redis::Protocol;
use Carp qw( croak confess );
use Encode ();
use Scalar::Util qw(weaken);



( run in 1.239 second using v1.01-cache-2.11-cpan-7add2cbd662 )