class Redis

def flushdb

Remove all keys from the current database.
def flushdb
  synchronize do
    @client.call(:flushdb)
  end
end