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

Redis Go client

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

When using Redis streams with multiple consumers, I get an i/o timeout on consumers that don't read a message. This seems to occur when another consumer did read a message...

There are occasions when a connection handling a TxPipeline gets closed unexpectedly (maybe because the remote server shut down). Despite the pool's attempts to discard bad idle connections, this validation...

## Current Behavior The `redisotel` skips the span creation by only checking the `IsRecording` of the parent span. This breaks the span creation defined by [opentelemetry specification](https://github.com/open-telemetry/opentelemetry-specification/blob/e87154c02b40e4b7bb6bf776a12e352372b21134/specification/trace/sdk.md#sdk-span-creation). > Create a...

feature

Issue tracker is used for reporting bugs and discussing new features. Please use [stackoverflow](https://stackoverflow.com) for supporting issues. go-redis:v8 redis_server:3.2.9(M-S-S deployed in Wuxi) redis_client:deployed in shenzhen(The dedicated network connection between Shenzhen...

In one of our production clusters, where we use `SlaveForKey` function to selectively run `EVALSHA`, we noticed that the replica selection strategy was random and resulted in an uneven traffic...

When using the FailoverClient (Sentinel) with PubSub, calling Close will deadlock. ## Expected Behavior Close will close the PubSub and return. ## Current Behavior Close does not return. ## Steps...

This library provides awesome features and functionalities and it is probably the most powerful Go client for Redis. However, in terms of observability, I can see there is only a...

## Expected Behavior My application should send a trace to Jaeger. ## Current Behavior Nothing happens. No error in the log, no crash of the app, no trace in Jaeger....

## Expected Behavior I am using Sentinel with 1 primary and 2 replicas. I want to send read-only commands to the replicas, on ANY DB number, not just DB 0....