1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-17 09:57:01 +00:00

Upgrade Redis client to v9 (#2102)

Signed-off-by: Gerasimos (Makis) Maropoulos <kataras2006@hotmail.com>
Co-authored-by: Gerasimos (Makis) Maropoulos <kataras2006@hotmail.com>
This commit is contained in:
Phước Trung
2023-03-17 16:03:18 +07:00
committed by GitHub
parent bbe3da7733
commit 65bb98f055
4 changed files with 16 additions and 10 deletions

View File

@@ -6,7 +6,7 @@ import (
"strconv"
"time"
"github.com/go-redis/redis/v8"
"github.com/redis/go-redis/v9"
)
type (
@@ -17,7 +17,7 @@ type (
)
// GoRedisClient is the interface which both
// go-redis' Client and Cluster Client implements.
// go-redis's Client and Cluster Client implements.
type GoRedisClient interface {
redis.Cmdable // Commands.
io.Closer // CloseConnection.