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

### Discussed in https://github.com/go-redis/redis/discussions/2023 Originally posted by **vlasky** February 16, 2022 There is currently no support for specifying custom TLS certificate files as options in the Redis connection string. If...

feature

Issue tracker is used for reporting bugs and discussing new features. Please use [stackoverflow](https://stackoverflow.com) for supporting issues. In procuction environment ,"runtime: name offset base pointer out of range" happen sometimes,...

## Expected Behavior Can be parsed correctly ## Current Behavior B struct is some default value, cannot read from the Redis ```text task: {PO:{_:[] _:{} ID: CreatedTime:0 UpdatedTime:0 DeletedTime:0} TaskId:5...

In multi tenant SasS system, I want to update cmd before process. ```go type RedisHooks struct {} func (h *RedisHooks) BeforeProcess(ctx context.Context, cmd redis.Cmder) (context.Context, error) { tenantID, ok :=...

安装的docker redis cluster: 端口映射:PORTS 0.0.0.0:7006->6379/tcp 0.0.0.0:7005->6379/tcp 0.0.0.0:7004->6379/tcp 0.0.0.0:7003->6379/tcp 0.0.0.0:7002->6379/tcp 0.0.0.0:7001->6379/tcp 链接url: Addrs: []string{"192.168.101.7:7001", "192.168.101.7:7002", "192.168.101.7:7003", "192.168.101.7:7004", "192.168.101.7:7005", "192.168.101.7:7006"}, 返回错误: err dial tcp 172.20.0.14:6379: i/o timeout err dial tcp 172.20.0.14:6379: i/o...

the basic hook is given as ```go type Hook interface { BeforeProcess(ctx context.Context, cmd Cmder) (context.Context, error) AfterProcess(ctx context.Context, cmd Cmder) error BeforeProcessPipeline(ctx context.Context, cmds []Cmder) (context.Context, error) AfterProcessPipeline(ctx context.Context,...

We want our application code base to support connection to both Simple (single standalone) and Cluster Redis servers. Currently we have implemented this with our own wrapper for both `NewClusterClient()`...

Hello, our project recently migrated to a new version of `go-redis` - v8 and I faced a panic from the library. ``` panic: interface conversion: interface {} is []interface {},...

Is it possible for UniversalOptions to support the Options.Network setting? My application has a config file where the user can specify a single redis server (through either tcp or unix...