You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version: redis==4.2.2 Platform: MacOS with python==3.10 Description: execute_command behaves strangely in cluster mode.
run no-key command:
# works finerc.cluster_info()
rc.execute_command("CLUSTER INFO")
# RedisClusterException: No way to dispatch this command to Redis Cluster. Missing key.rc.execute_command("CLUSTER", "INFO")
rc.execute_command("cluster info")
rc.execute_command("cluster", "info")
The text was updated successfully, but these errors were encountered:
suxb201
changed the title
execute_command behaves strangely in cluster mode
execute_command() behaves strangely in cluster mode
Apr 7, 2022
Hi @suxb201 have you tried using the commands directly, for the cluster interface rather than execute command? While perhaps there's improvement for raw commands we can do here (clearly!), at least this should get you over your hump.
Version: redis==4.2.2
Platform: MacOS with python==3.10
Description:
execute_command
behaves strangely in cluster mode.run no-key command:
The text was updated successfully, but these errors were encountered: