Replies: 1 comment 1 reply
-
I am no aware of any existing solution, but you can start by describing the "APIs supported by aioredis-cluster" and maybe someone will help. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As per Redis documentation, Every node of a Redis cluster generates events about its own subset of the keyspace, However, unlike regular Pub/Sub communication in a cluster, events' notifications are not broadcasted to all nodes. keyspace events are node-specific. This means that to receive all keyspace events of a cluster, clients need to subscribe to each of the nodes.
https://redis.io/topics/notifications
Question: Any recommended way to subscribe to all nodes of cluster to receive all keyspace events with go-redis.
Or
Is there any way of subscribing dynamically to slave node turn into master in case of fail over (master brought down)?
Beta Was this translation helpful? Give feedback.
All reactions