Method: Redis#flushall

Defined in:
lib/redis.rb

#flushallString

Remove all keys from all databases.

Returns:

  • (String)

    OK



130
131
132
133
134
# File 'lib/redis.rb', line 130

def flushall
  synchronize do
    @client.call [:flushall]
  end
end