perl-redis icon indicating copy to clipboard operation
perl-redis copied to clipboard

Add support for Modules commands

Open gkorland opened this issue 5 years ago • 3 comments

Modules commands' names are usually in the format XXX.YYY. Which means the command name includes . after the prefix.

gkorland avatar Feb 02 '20 16:02 gkorland

+1. E.g. I need to execute JSON.SET from RedisJSON but no way with Perl client lib.

pavelsr avatar Feb 09 '20 19:02 pavelsr

Btw, you can execute module commands even now via __std_cmd, e.g.

Redis->new( server => 'redis:6379' )->__std_cmd('JSON.SET', $mem_key, '.', encode_json($data) );

pavelsr avatar Feb 09 '20 19:02 pavelsr

This is related to https://github.com/PerlRedis/perl-redis/pull/137

dams avatar Aug 09 '20 11:08 dams