Skip to content

Commit a8e56a2

Browse files
authored
Merge pull request #2110 from go-redis/feat/redis-7
feat: upgrade to Redis 7
2 parents c98c5f0 + d09c27e commit a8e56a2

File tree

9 files changed

+293
-229
lines changed

9 files changed

+293
-229
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ bench: testdeps
1616

1717
testdata/redis:
1818
mkdir -p $@
19-
wget -qO- https://download.redis.io/releases/redis-6.2.5.tar.gz | tar xvz --strip-components=1 -C $@
19+
wget -qO- https://download.redis.io/releases/redis-7.0.0.tar.gz | tar xvz --strip-components=1 -C $@
2020

2121
testdata/redis/src/redis-server: testdata/redis
2222
cd $< && make all

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@ And then install go-redis/v8 (note _v8_ in the import; omitting it is a popular
6969
go get github.com/go-redis/redis/v8
7070
```
7171

72+
If you need **Redis 7** support, install go-redis/v9:
73+
74+
```shell
75+
go get github.com/go-redis/redis/v9
76+
```
77+
7278
## Quickstart
7379

7480
```go

0 commit comments

Comments
 (0)