Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
9200312a
Commit
9200312a
authored
May 30, 2016
by
Salvatore Sanfilippo
Browse files
Merge pull request #3278 from itamarhaber/patch-8
Allow SPOP from Lua scripts
parents
5d4b5fbd
2866e023
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/server.c
View file @
9200312a
...
@@ -165,7 +165,7 @@ struct redisCommand redisCommandTable[] = {
...
@@ -165,7 +165,7 @@ struct redisCommand redisCommandTable[] = {
{
"smove"
,
smoveCommand
,
4
,
"wF"
,
0
,
NULL
,
1
,
2
,
1
,
0
,
0
},
{
"smove"
,
smoveCommand
,
4
,
"wF"
,
0
,
NULL
,
1
,
2
,
1
,
0
,
0
},
{
"sismember"
,
sismemberCommand
,
3
,
"rF"
,
0
,
NULL
,
1
,
1
,
1
,
0
,
0
},
{
"sismember"
,
sismemberCommand
,
3
,
"rF"
,
0
,
NULL
,
1
,
1
,
1
,
0
,
0
},
{
"scard"
,
scardCommand
,
2
,
"rF"
,
0
,
NULL
,
1
,
1
,
1
,
0
,
0
},
{
"scard"
,
scardCommand
,
2
,
"rF"
,
0
,
NULL
,
1
,
1
,
1
,
0
,
0
},
{
"spop"
,
spopCommand
,
-
2
,
"wR
s
F"
,
0
,
NULL
,
1
,
1
,
1
,
0
,
0
},
{
"spop"
,
spopCommand
,
-
2
,
"wRF"
,
0
,
NULL
,
1
,
1
,
1
,
0
,
0
},
{
"srandmember"
,
srandmemberCommand
,
-
2
,
"rR"
,
0
,
NULL
,
1
,
1
,
1
,
0
,
0
},
{
"srandmember"
,
srandmemberCommand
,
-
2
,
"rR"
,
0
,
NULL
,
1
,
1
,
1
,
0
,
0
},
{
"sinter"
,
sinterCommand
,
-
2
,
"rS"
,
0
,
NULL
,
1
,
-
1
,
1
,
0
,
0
},
{
"sinter"
,
sinterCommand
,
-
2
,
"rS"
,
0
,
NULL
,
1
,
-
1
,
1
,
0
,
0
},
{
"sinterstore"
,
sinterstoreCommand
,
-
3
,
"wm"
,
0
,
NULL
,
1
,
-
1
,
1
,
0
,
0
},
{
"sinterstore"
,
sinterstoreCommand
,
-
3
,
"wm"
,
0
,
NULL
,
1
,
-
1
,
1
,
0
,
0
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment