go-redis icon indicating copy to clipboard operation
go-redis copied to clipboard

Redis Go client

Results 292 go-redis issues
Sort by recently updated
recently updated
newest added

I encountered a problem that a web-service(deployed at k8s, 20 pods) ran out of the redis-server max clients(=30000). The redis client pool was configured with PoolSize=100, I thought the connections...

**Describe the bug** When deleting multi keys in different slots, i got error below: CROSSSLOT KEYS in request don't hash to the same slot How could i del keys in...

The README has stated something like `Redis 3 commands except QUIT, MONITOR, and SYNC.` for 8 years or so. I am unclear if this deliberate, or if there might be...

This PR revert #2060, which caused #2175. Fixes #2175.

Hi, I'm checking currently that library to use it in the project which I'm working on. As part of that, I need to use client-side caching which uses tracking. Link...

Stale

Closes #2115 Sharded pub/sub ref: https://redis.io/docs/reference/cluster-spec/#publishsubscribe

Pubsub subscription disconnects and reconnects every 3 seconds, raising an i/o timeout error. ## Expected Behavior Work as intended, without raising any errors ## Current Behavior Disconnects from Redis &...

#2060 cause `SetReadDeadline` not called, so `PubSub.ReceiveTimeout(ctx, 0)` will not get a read deadline set, thus it will receive the `i/o timeout` error after some time. Related #2139. ## Expected...

## Expected Behavior `ScanIterator` doc says it's safe for concurrent use. ## Current Behavior If one goroutine calls `Next()` then it cannot call `Val()` safely because another goroutine might have...

enhancement
v9

We use redis ring client to shard access to redis for our rate limit infrastructure in Kubernetes https://opensource.zalando.com/skipper/tutorials/ratelimit/#redis-based-cluster-ratelimits. I would like to add and remove shards on demand while Kubernetes...

v9
release-blocker