srandmember
SRANDMEMBER
SRANDMEMBER key [count]
When called with just the key
argument, return a random element from the set value stored at key
.
Starting from Redis version 2.6, when called with the additional count
argument, return an array of count
distinct elements if count
is positive. If called with a negative count
the behavior changes and the command is allowed to return the same element multiple times. In this case the number of returned elements is the absolute value of the specified count
.
When called with just the key argument, the operation is similar to SPOP, however while 登录查看完整内容