Jamm\Memory\RedisServer::sUnionStore PHP Method

sUnionStore() public method

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