From e77747cff88b2ab166c8a0578245409cefb3ca6c Mon Sep 17 00:00:00 2001 From: lucaq Date: Mon, 16 Aug 2021 09:52:16 +0800 Subject: [PATCH] =?UTF-8?q?redis.go=EF=BC=8Ctype=20StringCmd=20=3D=20red.S?= =?UTF-8?q?tringCmd=20(#790)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add Sinter,Sinterstore; Modify TestRedis_Set * type StringCmd * redis.go,type StringCmd = red.StringCmd Co-authored-by: lucq --- core/stores/redis/redis.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/stores/redis/redis.go b/core/stores/redis/redis.go index dd5687e4..13f4fac7 100644 --- a/core/stores/redis/redis.go +++ b/core/stores/redis/redis.go @@ -71,6 +71,8 @@ type ( IntCmd = red.IntCmd // FloatCmd is an alias of redis.FloatCmd. FloatCmd = red.FloatCmd + // StringCmd is an alias of redis.StringCmd. + StringCmd = red.StringCmd ) // New returns a Redis with given options.