class Redis::Distributed

def spop(key, count = nil)

Remove and return a random member from a set.
def spop(key, count = nil)
  node_for(key).spop(key, count)
end