Jamm\Memory\RedisServer::sDiffStore PHP Method

sDiffStore() public method

public sDiffStore ( $destination, $key )
    public function sDiffStore($destination, $key)
    {
        if (!is_array($key)) {
            $key = func_get_args();
        } else {
            array_unshift($key, $destination);
        }
        return $this->__call('sDiffStore', $key);
    }