Jamm\Memory\RedisServer::SPOP PHP Method

SPOP() public method

Remove and return a random member from a set
public SPOP ( string $key ) : string
$key string
return string
    public function SPOP($key)
    {
        return $this->_send(array('SPOP', $key));
    }