class Redis

def shutdown

Synchronously save the dataset to disk and then shut down the server.
def shutdown
  synchronize do
    @client.call(:shutdown)
  end
end