class Redis

def flushall

Returns:
  • (String) - `OK`
def flushall
  synchronize do |client|
    client.call [:flushall]
  end
end