ERR EXEC without MULTI - Jedis

2019-08-27 18:22发布

I'm learning jedis, I couldn't exactly find out what is the problem in this code. Can anyone help me.The exception occurs at the statement tx.exec()

public class JedisFactory {

 public static void main (String [] args){
     JedisPool pool = new JedisPool(new JedisPoolConfig(), "127.0.0.1", 6379);
     Jedis jedis = pool.getResource();

     Pipeline pipeline = jedis.pipelined();
     for(int i=0; i < 1000 ; i++){
         pipeline.hincrBy("Id", i+"", i);
     }
     pipeline.exec();        
     pool.returnResource(jedis);

     jedis = pool.getResource();
     Transaction tx = jedis.multi();
     Response<Map<String,String>> map = tx.hgetAll("Id");
     tx.hincrBy("Id","2", 1);
     **tx.exec();**
     //Map<String,String> map1 = jedis.hgetAll("Id");

     pool.returnResource(jedis);
     pool.destroy();
 }
}
Exception in thread "main" redis.clients.jedis.exceptions.JedisDataException: ERR EXEC without MULTI
    at redis.clients.jedis.Protocol.processError(Protocol.java:54)
    at redis.clients.jedis.Protocol.process(Protocol.java:61)
    at redis.clients.jedis.Protocol.read(Protocol.java:122)
    at redis.clients.jedis.Connection.getAll(Connection.java:207)
    at redis.clients.jedis.BinaryTransaction.exec(BinaryTransaction.java:23)
    at com.work.JedisFactory.main(JedisFactory.java:30)

2条回答
成全新的幸福
2楼-- · 2019-08-27 18:55

I guess you should use pipeline.execute() instead of pipeline.exec(), at least I used it like that and it was ok.

查看更多
手持菜刀,她持情操
3楼-- · 2019-08-27 18:56

Adding pipeline.multi() before for loop solved the problem. But the exception thrown at some other line before the fix.

查看更多
登录 后发表回答