RedisTemplate 事务处理方法 watch multi exec 的使用
Posted powerwu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RedisTemplate 事务处理方法 watch multi exec 的使用相关的知识,希望对你有一定的参考价值。
@Autowired RedisTemplate<String,String> redisTemplate; redisTemplate.execute(new SessionCallback<Object>() @Override public <K, V> Object execute(RedisOperations<K, V> operations) throws DataAccessException //开启事务 operations.multi(); for(int i = 1; i <= 5; i++) redisTemplate.convertAndSend("channel:test", String.format("我是消息%d号: %tT", i, new Date())); redisTemplate.opsForValue().set("key" + i,"key" + i); //执行事务 operations.exec(); return null; );
以上是关于RedisTemplate 事务处理方法 watch multi exec 的使用的主要内容,如果未能解决你的问题,请参考以下文章