Replies: 9 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/v8If you are using Redis 7, install go-redis/v9: go get github.com/go-redis/redis/v9But  | 
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.
-
| Is there an official answer now? 
 | 
Beta Was this translation helpful? Give feedback.
-
| In the https://github.com/redis/go-redis/blob/master/README.md#supported-versions we have added a section for the supported versions and this will be present (and kept up to date) from the next release forward. | 
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
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