mirror of
https://github.com/fluencelabs/redis
synced 2025-06-14 01:31:21 +00:00
TTL, EXPIRE and EXPIREAT now support the milliseconds input/output form
This commit is contained in:
@ -172,8 +172,8 @@ struct redisCommand redisCommandTable[] = {
|
||||
{"move",moveCommand,3,"w",0,NULL,1,1,1,0,0},
|
||||
{"rename",renameCommand,3,"w",0,renameGetKeys,1,2,1,0,0},
|
||||
{"renamenx",renamenxCommand,3,"w",0,renameGetKeys,1,2,1,0,0},
|
||||
{"expire",expireCommand,3,"w",0,NULL,1,1,1,0,0},
|
||||
{"expireat",expireatCommand,3,"w",0,NULL,1,1,1,0,0},
|
||||
{"expire",expireCommand,-3,"w",0,NULL,1,1,1,0,0},
|
||||
{"expireat",expireatCommand,-3,"w",0,NULL,1,1,1,0,0},
|
||||
{"keys",keysCommand,2,"r",0,NULL,0,0,0,0,0},
|
||||
{"dbsize",dbsizeCommand,1,"r",0,NULL,0,0,0,0,0},
|
||||
{"auth",authCommand,2,"r",0,NULL,0,0,0,0,0},
|
||||
@ -194,7 +194,7 @@ struct redisCommand redisCommandTable[] = {
|
||||
{"sort",sortCommand,-2,"wm",0,NULL,1,1,1,0,0},
|
||||
{"info",infoCommand,-1,"r",0,NULL,0,0,0,0,0},
|
||||
{"monitor",monitorCommand,1,"ars",0,NULL,0,0,0,0,0},
|
||||
{"ttl",ttlCommand,2,"r",0,NULL,1,1,1,0,0},
|
||||
{"ttl",ttlCommand,-2,"r",0,NULL,1,1,1,0,0},
|
||||
{"persist",persistCommand,2,"w",0,NULL,1,1,1,0,0},
|
||||
{"slaveof",slaveofCommand,3,"aws",0,NULL,0,0,0,0,0},
|
||||
{"debug",debugCommand,-2,"aw",0,NULL,0,0,0,0,0},
|
||||
|
Reference in New Issue
Block a user