From 1f958ac63d59816ec9a23fb3ddb44a8daa2d49b0 Mon Sep 17 00:00:00 2001 From: John Sully Date: Thu, 5 May 2022 20:50:44 +0000 Subject: [PATCH] Disable async for hget commands as it is not ready --- src/server.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/server.cpp b/src/server.cpp index f356bb96e..225de1c2a 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -598,7 +598,7 @@ struct redisCommand redisCommandTable[] = { 0,NULL,1,1,1,0,0,0}, {"hget",hgetCommand,3, - "read-only fast async @hash", + "read-only fast @hash", 0,NULL,1,1,1,0,0,0}, {"hmset",hsetCommand,-4, @@ -606,7 +606,7 @@ struct redisCommand redisCommandTable[] = { 0,NULL,1,1,1,0,0,0}, {"hmget",hmgetCommand,-3, - "read-only fast async @hash", + "read-only fast @hash", 0,NULL,1,1,1,0,0,0}, {"hincrby",hincrbyCommand,4, @@ -630,15 +630,15 @@ struct redisCommand redisCommandTable[] = { 0,NULL,1,1,1,0,0,0}, {"hkeys",hkeysCommand,2, - "read-only to-sort async @hash", + "read-only to-sort @hash", 0,NULL,1,1,1,0,0,0}, {"hvals",hvalsCommand,2, - "read-only to-sort async @hash", + "read-only to-sort @hash", 0,NULL,1,1,1,0,0,0}, {"hgetall",hgetallCommand,2, - "read-only random async @hash", + "read-only random @hash", 0,NULL,1,1,1,0,0,0}, {"hexists",hexistsCommand,3, @@ -650,7 +650,7 @@ struct redisCommand redisCommandTable[] = { 0,NULL,1,1,1,0,0,0}, {"hscan",hscanCommand,-3, - "read-only random async @hash", + "read-only random @hash", 0,NULL,1,1,1,0,0,0}, {"incrby",incrbyCommand,3,