Subject: | Hash Commands |
Hi,
Could you add hash commands (
https://code.google.com/p/redis/wiki/HsetCommand ) to the Perl module,
you just need to add
hset, hget, hexists and hdel to the bulk_command list :
my $bulk_command = {
...
hset => 1, hget => 1,
hexists => 1, hdel => 1,
};
Best Regards,