Replies: 7 comments 3 replies
-
Adding to the question, I'd like to understand the differences between major versions (regular, v8, v9), because I couldn't find in docs. It would be great to have a migration description from one to another aswell. |
Beta Was this translation helpful? Give feedback.
-
If you are using Redis 6, install go-redis/v8: go get github.com/go-redis/redis/v8 If you are using Redis 7, install go-redis/v9: go get github.com/go-redis/redis/v9 But |
Beta Was this translation helpful? Give feedback.
-
What error do you have? |
Beta Was this translation helpful? Give feedback.
-
I used v9 with redis6, using stream and got 'ERR syntax error' |
Beta Was this translation helpful? Give feedback.
-
Hi, i want to ask regarding go-redis v8.7.1, which RESP version is supported for that? I look for the documentation for that version, but i don’t find it. Anyone know? |
Beta Was this translation helpful? Give feedback.
-
can i use v9 with redis5 ? |
Beta Was this translation helpful? Give feedback.
-
I use v9 with redis 5,init return err:Unbale to connect to RedisERR Unknown subcommand or wrong number of arguments for 'setinfo'. Try CLIENT HELP |
Beta Was this translation helpful? Give feedback.
-
I did a quick test with v9 of this package.
It works with v7 of Redis as mentioned in docs.
When I tried it with v6 of Redis, it did not connect.
Do I have to use v8 of this package to use with v6?
Is there a chance that v9 of this package can support v6 and v7 of Redis?
Beta Was this translation helpful? Give feedback.
All reactions