The go redis client recommends using package: "github.com/go-redis/redis", but this project uses: "gopkg.in/redis.v3".
Trying to use those two packages together I get the following error:
cannot use (type *"github.com/foo/bar/vendor/github.com/go-redis/redis".Client) as type *"github.com/foo/bar/vendor/gopkg.in/redis.v3".Client in argument to rmq.OpenConnectionWithRedisClient
I think this project dependencies should be updated to redis v6 and use github.com/go-redis/redis.
Hello,
The go redis client recommends using package:
"github.com/go-redis/redis"
, but this project uses:"gopkg.in/redis.v3"
.Trying to use those two packages together I get the following error:
I think this project dependencies should be updated to redis v6 and use
github.com/go-redis/redis
.