class Redis

def watch(*keys)

Watch the given keys to determine execution of the MULTI/EXEC block.
def watch(*keys)
  synchronize do
    @client.call(:watch, *keys)
  end
end