Java实现redis事务

1.  正常执行的事务

[html]  view plain  copy
  1. @Test  
  2. public void test() {  
  3.     Jedis jedis = new Jedis("localhost");  
  4.     Transaction transaction = jedis.multi();  
  5.     transaction.lpush("key", "11");  
  6.     transaction.lpush("key", "22");    
  7.     transaction.lpush("key", "33");  
  8.     List<Object> list = transaction.exec();  
  9. }  
上述事务正常执行,执行完后,再执行

[html]  view plain  copy
  1. System.out.println(jedis.lrange("key",0,10));  
会将上述事务中插入redis中的数据全部打印出来


2. 执行事务的过程中抛出异常

[html]  view plain  copy
  1. @Test  
  2. public void test() {  
  3.     Jedis jedis = new Jedis("localhost");  
  4.     try {  
  5.         Transaction transaction = jedis.multi();  
  6.         transaction.lpush("key", "11");  
  7.         transaction.lpush("key", "22");  
  8.         int a = 6 / 0;  
  9.         transaction.lpush("key", "33");  
  10.         List<Object> list = transaction.exec();  
  11.     } catch (Exception e) {  
  12.   
  13.     }  
  14. }  
上述代码执行事务的过程中会抛出异常,导致事务失败,所以全部无效,再执行

[html]  view plain  copy
  1. System.out.println(jedis.lrange("key",0,10));  
打印出的结果为空

结论: 事务要么全部执行成功,要么全部不执行

你可能感兴趣的:(JAVA缓存与数据库)