add async tag to hgwtall hkeys hvals hscan

Former-commit-id: 8534de27603bd4cbd10a087840bcb1a90651afa1
This commit is contained in:
malavan 2021-09-23 20:18:38 +00:00
parent 1a9dc0d312
commit a41ee0af81

View File

@ -631,15 +631,15 @@ struct redisCommand redisCommandTable[] = {
0,NULL,1,1,1,0,0,0},
{"hkeys",hkeysCommand,2,
"read-only to-sort @hash",
"read-only to-sort async @hash",
0,NULL,1,1,1,0,0,0},
{"hvals",hvalsCommand,2,
"read-only to-sort @hash",
"read-only to-sort async @hash",
0,NULL,1,1,1,0,0,0},
{"hgetall",hgetallCommand,2,
"read-only random @hash",
"read-only random async @hash",
0,NULL,1,1,1,0,0,0},
{"hexists",hexistsCommand,3,
@ -651,7 +651,7 @@ struct redisCommand redisCommandTable[] = {
0,NULL,1,1,1,0,0,0},
{"hscan",hscanCommand,-3,
"read-only random @hash",
"read-only random async @hash",
0,NULL,1,1,1,0,0,0},
{"incrby",incrbyCommand,3,