Results 42 comments of Monkey

travis-ci seems more likely to appear: https://travis-ci.org/github/go-redis/redis/jobs/763230641

I encountered an unintelligible data race locally, I think it should not appear under any circumstances. This is all the error messages, no more. code: ```go //race_amd64.s //226 // Store...

Should we use the "json" tag? I feel like it's better handled by the person who needs it. ```go func structToMap() { .... } client.Hset(ctx, "key", structToMap(items)) ```

We should think more, like tag="" or tag="-", or for types like: ```go type Demo struct { Pers []int Ptr *struct Map map[string]*struct ... } ```

Yes, it is a new option added by redis7.0, go-redis has not been updated yet.

> Can I push a PR with this new method or usually the maintainers are developing all the new features of an engine all at once? If you perform unit...

@liuping001 go-redis supports `XINFO CONSUMERS key groupname`, you can try to update the latest version of go-redis.

Can you provide the version of `Redis` used and sample code? And the data sample of pubsub. example: Redis: 6.x.x Go-Redis: v8.11.x Code: ```go tmp := db.Subscribe(ctx, ...) ..... ```...

> Is this resolved with #1824 being merged? We still can't solve this problem perfectly, because the redis-server startup time is uncertain, and there may be a short-term failure to...