class Redis

def bgsave

Asynchronously save the dataset to disk.
def bgsave
  synchronize do
    @client.call(:bgsave)
  end
end