mirror of
https://github.com/fluencelabs/redis
synced 2025-06-15 02:01:21 +00:00
Deny commands flagged as REDIS_CMD_NOSCRIPT from Lua scripts
This commit is contained in:
@ -125,7 +125,7 @@ struct redisCommand redisCommandTable[] = {
|
||||
{"smove",smoveCommand,4,"w",0,NULL,1,2,1,0,0},
|
||||
{"sismember",sismemberCommand,3,"r",0,NULL,1,1,1,0,0},
|
||||
{"scard",scardCommand,2,"r",0,NULL,1,1,1,0,0},
|
||||
{"spop",spopCommand,2,"wR",0,NULL,1,1,1,0,0},
|
||||
{"spop",spopCommand,2,"wRs",0,NULL,1,1,1,0,0},
|
||||
{"srandmember",srandmemberCommand,2,"rR",0,NULL,1,1,1,0,0},
|
||||
{"sinter",sinterCommand,-2,"r",0,NULL,1,-1,1,0,0},
|
||||
{"sinterstore",sinterstoreCommand,-3,"wm",0,NULL,2,-1,1,0,0},
|
||||
|
Reference in New Issue
Block a user