Subject: | Add support for Redis >= 1.2 bulk commands |
In order to use zsets in Redis >= 1.2 we need to update the list of bulk
commands in Redis.pm. Taking the list from AnyEvent::Reids which appears
to be complete:
my %bulk_command = map { $_ => 1 }
qw( set setnx rpush lpush lset lrem sadd srem sismember echo getset
smove zadd zrem zscore zincrby append );
Thanks!