redisc icon indicating copy to clipboard operation
redisc copied to clipboard

A Go redis cluster client built on top of redigo.

Results 5 redisc issues
Sort by recently updated
recently updated
newest added

## Description When the package was initially created, as a measure of precaution due to potentially tricky and problematic semantics, the automatic following of redirections (that are available via the...

## Description Currently when connecting to a cluster, the node addresses are given initially. But when a call to Refresh is made, the nodes may report a different IP than...

## Description Add a `Cluster.WaitForCluster(ctx context.Context) error` method that calls the `CLUSTER INFO` Redis commands at intervals until it returns `cluster_state:ok` or the context expires. The call blocks until the...

## Description Starting with Redis 7, `CLUSTER SLOTS` is considered deprecated (but is still supported and works as before), and `CLUSTER SHARDS` is the new recommended way for cluster clients...

## Description Add a `Cluster.SplitByNode(keys ...string) [][]string` that takes a list of Redis keys and returns them grouped by keys that belong to the same node. It is similar to...