From d8400fb206b475d6e5f28b0fda4fcd882d4cefb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E8=8C=B6=E6=B8=85=E6=AC=A2?= Date: Wed, 9 Oct 2024 18:17:09 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0redis=E5=91=BD=E4=BB=A4?= =?UTF-8?q?=E6=9E=9A=E4=B8=BE=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- redis.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/redis.go b/redis.go index 3647895..c4012fb 100644 --- a/redis.go +++ b/redis.go @@ -13,6 +13,9 @@ const ( RedisCommandSet = "SET" RedisCommandDel = "DEL" RedisCommandGet = "GET" + RedisCommandHget = "HGET" + RedisCommandHset = "HSET" + RedisCommandHdel = "HDEL" RedisCommandMGet = "MGET" RedisCommandMSet = "MSET" RedisCommandLpush = "LPUSH"