Jamm\Memory\RedisServer::CLIENT_KILL PHP Method

CLIENT_KILL() public method

The ip:port should match a line returned by the CLIENT LIST command.
public CLIENT_KILL ( $ip, $port ) : boolean
$ip
$port
return boolean
    public function CLIENT_KILL($ip, $port)
    {
        return $this->_send(array('CLIENT', 'KILL', $ip . ':' . $port));
    }