Method: Redis#save

Defined in:
lib/redis.rb

#saveString

Synchronously save the dataset to disk.

Returns:

  • (String)


230
231
232
233
234
# File 'lib/redis.rb', line 230

def save
  synchronize do |client|
    client.call([:save])
  end
end