spop.3valkey - Man Page
Returns one or more random members from a set after removing them. Deletes the set if the last member was popped.
Synopsis
SPOP
key [count]
Description
Removes and returns one or more random members from the set value store at key
.
This operation is similar to SRANDMEMBER
, that returns one or more random elements from a set but does not remove it.
By default, the command pops a single member from the set. When provided with the optional count
argument, the reply will consist of up to count
members, depending on the set’s cardinality.
Reply
Resp2
One of the following:
- valkey-protocol(7) Nil reply: if the key does not exist.
- valkey-protocol(7) Bulk string reply: when called without the count argument, the removed member.
- valkey-protocol(7) Array reply: when called with the count argument, a list of the removed members.
Resp3
One of the following:
- valkey-protocol(7) Null reply: if the key does not exist.
- valkey-protocol(7) Bulk string reply: when called without the count argument, the removed member.
- valkey-protocol(7) Set reply: when called with the count argument, the set of removed members.
Complexity
Without the count argument O(1), otherwise O(N) where N is the value of the passed count.
Acl Categories
@fast @set @write
History
- Available since: 1.0.0
- Changed in 3.2.0: Added the
count
argument.
Examples
127.0.0.1:6379> SADD myset "one" (integer) 1 127.0.0.1:6379> SADD myset "two" (integer) 1 127.0.0.1:6379> SADD myset "three" (integer) 1 127.0.0.1:6379> SPOP myset "three" 127.0.0.1:6379> SMEMBERS myset 1) "one" 2) "two" 127.0.0.1:6379> SADD myset "four" (integer) 1 127.0.0.1:6379> SADD myset "five" (integer) 1 127.0.0.1:6379> SPOP myset 3 1) "one" 2) "four" 3) "five" 127.0.0.1:6379> SMEMBERS myset 1) "two"
Distribution of returned elements
Note that this command is not suitable when you need a guaranteed uniform distribution of the returned elements. For more information about the algorithms used for SPOP
, look up both the Knuth sampling and Floyd sampling algorithms.
See Also
sadd(3valkey), scard(3valkey), sdiff(3valkey), sdiffstore(3valkey), sinter(3valkey), sintercard(3valkey), sinterstore(3valkey), sismember(3valkey), smembers(3valkey), smismember(3valkey), smove(3valkey), srandmember(3valkey), srem(3valkey), sscan(3valkey), sunion(3valkey), sunionstore(3valkey)