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

### summary `s1 := s0` is shallow copy. when concurrently process read and write (append) operator for slice, raise data race. so, use `copy()` to deep copy slice object. ![image](https://github.com/redis/go-redis/assets/3785409/262809ec-85ea-40d7-9e86-3ffc38958372)...

bug

### summary add `hits/misses` stats of redis pool.

### summary Limit the bytes size of raw redis commands. when writing particularly large amounts of data, it is not friendly to otel collector and storage, and sometimes we don't...

I get the following when trying to use SentinelClient.Masters() `sentinel.Masters undefined (type *redis.SentinelClient has no field or method Masters)` My code is as follows: ``` sentinel := redis.NewSentinelClient(&redis.Options{ Addr: "redis-ha:26379",...

Stale

Issue tracker is used for reporting bugs and discussing new features. Please use [stackoverflow](https://stackoverflow.com) for supporting issues. ## Expected Behavior ## Current Behavior ## Possible Solution ## Steps to Reproduce...

this is doc: https://redis.io/commands/cluster-setslot#redis-cluster-live-resharding-explained I want to migrate some slots from one to another. before: ``` cluster nodes 43a1af446b289000fb2d187215eeceab356efa86 10.100.203.165:7002 master - 0 1536142793128 2 connected 10922-16383 659c45f1be91a41bbcacc895e500e39aff4b767e 10.100.203.165:7000 myself,master...

Stale

- [X] Do only one thing - [X] Non breaking API changes - [X] Tested fix: typo

The existing client already incorporates support for retrials. Should an error occur during execution and it's not a `readTimeout`, the command undergoes retrying within the `_process` function. However, there are...

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 4 to 5. Release notes Sourced from golangci/golangci-lint-action's releases. v5.0.0 What's Changed Changes feat: add support for pull_request_target and only-new-issues by @​kovetskiy in golangci/golangci-lint-action#506 feat: add option...

dependencies
github_actions

Issue tracker is used for reporting bugs and discussing new features. Please use [stackoverflow](https://stackoverflow.com) for supporting issues. When using redis-client 9.5.1 we have issue at ipv6 environment. We have a...