Method: Redis#bgsave

Defined in:
lib/redis.rb

#bgsaveObject

Asynchronously save the dataset to disk.



134
135
136
137
138
# File 'lib/redis.rb', line 134

def bgsave
  synchronize do
    @client.call(:bgsave)
  end
end