Skip to content

Commit

Permalink
Merge pull request redis#2360 from monkey92t/compatible
Browse files Browse the repository at this point in the history
docs: updated "Installation" description in README.md
  • Loading branch information
vmihailenco authored Jan 23, 2023
2 parents 0b709c7 + 8062665 commit 5ca5740
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,18 +53,19 @@ module:
go mod init github.com/my/repo
```

If you are using **Redis 6**, install go-redis/**v8**:
If you are using **Redis 7**, install go-redis/**v9**:

```shell
go get github.com/go-redis/redis/v8
go get github.com/go-redis/redis/v9
```

If you are using **Redis 7**, install go-redis/**v9**:
You can also use the stable version go-redis/**v8** (v8 does not support redis 7):

```shell
go get github.com/go-redis/redis/v9
go get github.com/go-redis/redis/v8
```


## Quickstart

```go
Expand Down

0 comments on commit 5ca5740

Please sign in to comment.