Jamm\Memory\RedisServer::SRANDMEMBER PHP Метод

SRANDMEMBER() публичный Метод

Get a random member from a set
public SRANDMEMBER ( string $key, integer $count = 1 ) : string
$key string
$count integer
Результат string
    public function SRANDMEMBER($key, $count = 1)
    {
        return $this->_send(array('SRANDMEMBER', $key, $count));
    }