RESP3: initial implementation of the HELLO command.

This commit is contained in:
antirez
2018-12-04 12:46:16 +01:00
parent e5fdd6b6bf
commit 4f0860cbfd
5 changed files with 73 additions and 15 deletions

View File

@ -284,6 +284,7 @@ struct redisCommand redisCommandTable[] = {
{"object",objectCommand,-2,"rR",0,NULL,2,2,1,0,0},
{"memory",memoryCommand,-2,"rR",0,NULL,0,0,0,0,0},
{"client",clientCommand,-2,"as",0,NULL,0,0,0,0,0},
{"hello",helloCommand,-2,"sF",0,NULL,0,0,0,0,0},
{"eval",evalCommand,-3,"s",0,evalGetKeys,0,0,0,0,0},
{"evalsha",evalShaCommand,-3,"s",0,evalGetKeys,0,0,0,0,0},
{"slowlog",slowlogCommand,-2,"aR",0,NULL,0,0,0,0,0},