wind-c / comqtt

A lightweight, high-performance go mqtt server(v3.0|v3.1.1|v5.0) supporting distributed cluster
MIT License
972 stars 53 forks source link

Redis: Usage of old go-redis package, before go-redis received official support by Redis #91

Closed jaxtonw closed 3 months ago

jaxtonw commented 3 months ago

Currently, we're using go-redis/redis at version 8.11.5. This package has moved namespaces and upgraded to version 9, ever since Redis officially supported it as a Redis client.

https://redis.io/blog/go-redis-official-redis-client/

We should update our used Redis package to the officially supported client at the new namespace: https://github.com/redis/go-redis

wind-c commented 3 months ago

Got it. I will update to the new namespace(https://github.com/redis/go-redis) as soon as possible.

wind-c commented 3 months ago

Changed in v2.5.6.

jaxtonw commented 3 months ago

Thanks so much for taking care of this!