Redis的事务和消息机制

upload successful
Java操作事务
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| @Test public void testTransaction(){ Jedis jedis = new Jedis("192.168.131.111", 6379); Transaction tc = null; try { tc = jedis.multi(); tc.decrBy("tom",100); tc.incrBy("mike", 100); tc.exec(); } catch (Exception e) { e.printStackTrace(); tc.discard(); } jedis.disconnect(); }
|
Java操作锁
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| @Test public void testLock(){ Jedis jedis = new Jedis("192.168.131.111", 6379); jedis.watch("ticket"); Transaction tc = null; try { tc = jedis.multi(); tc.decr("ticket"); Thread.sleep(10000); tc.decrBy("tom", 100); tc.exec(); } catch (Exception e) { e.printStackTrace(); tc.discard(); } }
|

upload successful

redis Message
Demo
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 EGNOD'S BLOG! redis事务如果你觉得我的文章对你有用,或者喜欢我写的文章,欢迎微信支付宝打赏!

支付宝打赏

微信打赏