class Redis

def flushall

Remove all keys from all databases.
def flushall
  synchronize do
    @client.call(:flushall)
  end
end