Hello,
I call the
redis.add_commands("hscan")
in resty_redis module in order to use the HSCAN command but when I use it with
local res, err = red:hscan("myHash", "0", "*", "200")
there is the following error:
ERR unknown command 'hscan'
It's the same with the folowwing parameters:
local res, err = red:hscan("myHash", "0", "MATCH *", "COUNT 200")
local res, err = red:hscan("myHash", "0")
Any advice would be much appreciated.
Jérôme