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

``` fatal error: concurrent map iteration and map write goroutine 42 [running]: runtime.throw({0xe66a8d?, 0xc000600000?}) /usr/local/go/src/runtime/panic.go:992 +0x71 fp=0xc00e496ec0 sp=0xc00e496e90 pc=0x438731 runtime.mapiternext(0xc1bcb72518?) /usr/local/go/src/runtime/map.go:871 +0x4eb fp=0xc00e496f30 sp=0xc00e496ec0 pc=0x41002b reflect.mapiternext(0x49ad8f?) /usr/local/go/src/runtime/map.go:1378 +0x19 fp=0xc00e496f48 sp=0xc00e496f30...

Cross-shard/cross-slot batch operations in cluster mode-enabled clusters, like transactions and pipelines, are not supported in a Redis cluster, by specification. * There is no server-side primitive that enables cross-shard transactional...

This is the first step for us to implement client-side caching, although no functionality has been implemented yet. 😄

If a user subscribes to many channels, it becomes difficult to keep track of which channel's data has been missed. https://github.com/redis/go-redis/discussions/3015

Hello guys, When publishing new tags of `go-redis`, can we also have tags of the following redis extras: - extra/redisprometheus - extra/redisotel - extra/rediscmd - extra/rediscensus That will permit us...

This reverts commit 4bf8b5a128b70cad518e5deeeeeec86315428837 TCP-Keepalives are enable by default in go since go 1.12 [in this commit](https://github.com/golang/go/commit/5bd7e9c54f946eec95d32762e7e9e1222504bfc1) few months after #825 were merged. Now the default value of 15-seconds is...

We were previously using client `v7` with server `v4` and everything was fine. But after upgrading to client `v9` and server `v7` things are not working right. We initialize our...

**Description:** This issue introduces an optional IGNORE clause for Time Series commands to filter close samples. The IGNORE clause includes two parameters: `IGNORE_MAX_TIME_DIFF` (milliseconds) and `IGNORE_MAX_VAL_DIFF` (floating-point). These parameters can...