class Redis

def sunionstore(destination, *keys)

Add multiple sets and store the resulting set in a key.
def sunionstore(destination, *keys)
  synchronize do
    @client.call(:sunionstore, destination, *keys)
  end
end