-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UNWATCH for redis cluster #955
Comments
Hello, I think that there is a performance issue if cluster has thousand of nodes. But certainly we can send the command to all nodes without errors. Lines 148 to 149 in 087a11b
In client-side-distributed feature case, we can use redis-rb/lib/redis/distributed.rb Lines 805 to 826 in 69ce376
Also, redis-cluster-proxy supports
So it seems that there is room for improvement for cluster mode in our gem. redis-rb/test/cluster_commands_on_transactions_test.rb Lines 28 to 32 in 087a11b
|
Since
watch
takes a keys(s) it appears to be supported on redis cluster, but unwatch raises an AmbiguousNodeError since there is no key specified. Is there a reason whyunwatch
could not be implemented to get called on all nodes?The text was updated successfully, but these errors were encountered: