Method: Redis#bgsave

Defined in:
lib/redis.rb

#bgsaveObject

Asynchronously save the dataset to disk.



141
142
143
144
145
# File 'lib/redis.rb', line 141

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