Vincent Luan

Results 3 issues of Vincent Luan

Hello, I'm trying to get a key using this code: ```go import ( "context" "time" "github.com/go-redis/cache/v8" "github.com/go-redis/redis/v8" ) timeout := 15 * time.Second ring := redis.NewRing(&redis.RingOptions{ Addrs: map[string]string{ "shard1": ":6379",...

Hi, I'm trying to send output to S3 in order to use with AWS DMS (as documented [here](https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.S3.html)). This requires a specific naming convention for the output files. For example:...

enhancement

With Redis cluster configurations that have only one endpoint (AWS ElastiCache for example), the go-redis `UniversalClient` will create `Client` object, not `ClusterClient`, which will not be able to execute commands...