class Redis

def without_reconnect(&block)

Run code without the client reconnecting
def without_reconnect(&block)
  synchronize do
    @client.without_reconnect(&block)
  end
end