I used Dynamic Redis to add additional functionality to redis. I'm able to use the commands from the redis-cli. Is it possible to use redis-py to use those new commands in a python script ?
I used Dynamic Redis to add additional functionality to redis. I'm able to use the commands from the redis-cli. Is it possible to use redis-py to use those new commands in a python script ?
Found the answer. Just extend one of the client classes(StrictRedis or Redis) and use their execute_command method.
https://github.com/andymccurdy/redis-py/issues/632