Jamm\Memory\RedisServer::SRANDMEMBER PHP Method

SRANDMEMBER() public method

Get a random member from a set
public SRANDMEMBER ( string $key, integer $count = 1 ) : string
$key string
$count integer
return string
    public function SRANDMEMBER($key, $count = 1)
    {
        return $this->_send(array('SRANDMEMBER', $key, $count));
    }