Skip to content

Commit

Permalink
Polishing.
Browse files Browse the repository at this point in the history
Tweak wording.

See #2881
  • Loading branch information
mp911de committed Apr 16, 2024
1 parent 49e5afc commit 2d6481b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main/antora/modules/ROOT/pages/redis/cluster.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ See the https://redis.io/topics/cluster-tutorial[Cluster Tutorial] for more info

NOTE: When using xref:repositories.adoc[Redis Repositories] with Redis Cluster, make yourself familiar with how to xref:redis/redis-repositories/cluster.adoc[run Redis Repositories on a Cluster].

CAUTION: Relying on keyspace events when using Redis Cluster is discouraged due to https://github.com/spring-projects/spring-data-redis/issues/1111[only being subscribed to events from one random redis node in the cluster].
Using redis without multiple shards avoids this problem.
CAUTION: Do not rely on keyspace events when using Redis Cluster as keyspace events are not replicated across shards.
Pub/Sub https://github.com/spring-projects/spring-data-redis/issues/1111[subscribes to a random cluster node] which only receives keyspace events from a single shard.
Use single-node Redis to avoid keyspace event loss.

[[cluster.working.with.cluster]]
== Working With Redis Cluster Connection
Expand Down

0 comments on commit 2d6481b

Please sign in to comment.