redis.clients.jedis.Pipeline.getPipelinedResponseLength()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(2.6k)|赞(0)|评价(0)|浏览(104)

本文整理了Java中redis.clients.jedis.Pipeline.getPipelinedResponseLength()方法的一些代码示例,展示了Pipeline.getPipelinedResponseLength()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Pipeline.getPipelinedResponseLength()方法的具体详情如下:
包路径:redis.clients.jedis.Pipeline
类名称:Pipeline
方法名:getPipelinedResponseLength

Pipeline.getPipelinedResponseLength介绍

暂无

代码示例

代码示例来源:origin: sohutv/cachecloud

/**
 * Synchronize pipeline by reading all responses. This operation close the pipeline. In order to
 * get return values from pipelined commands, capture the different Response<?> of the
 * commands you execute.
 */
public void sync() {
 if (getPipelinedResponseLength() > 0) {
  List<Object> unformatted = client.getMany(getPipelinedResponseLength());
  for (Object o : unformatted) {
   generateResponse(o);
  }
 }
}

代码示例来源:origin: sohutv/cachecloud

/**
 * Synchronize pipeline by reading all responses. This operation close the pipeline. Whenever
 * possible try to avoid using this version and use Pipeline.sync() as it won't go through all the
 * responses and generate the right response type (usually it is a waste of time).
 * @return A list of all the responses in the order you executed them.
 */
public List<Object> syncAndReturnAll() {
 if (getPipelinedResponseLength() > 0) {
  List<Object> unformatted = client.getMany(getPipelinedResponseLength());
  List<Object> formatted = new ArrayList<Object>();
  for (Object o : unformatted) {
   try {
    formatted.add(generateResponse(o).get());
   } catch (JedisDataException e) {
    formatted.add(e);
   }
  }
  return formatted;
 } else {
  return java.util.Collections.<Object> emptyList();
 }
}

代码示例来源:origin: apache/servicemix-bundles

/**
 * Synchronize pipeline by reading all responses. This operation close the pipeline. In order to
 * get return values from pipelined commands, capture the different Response&lt;?&gt; of the
 * commands you execute.
 */
public void sync() {
 if (getPipelinedResponseLength() > 0) {
  List<Object> unformatted = client.getMany(getPipelinedResponseLength());
  for (Object o : unformatted) {
   generateResponse(o);
  }
 }
}

代码示例来源:origin: apache/servicemix-bundles

/**
 * Synchronize pipeline by reading all responses. This operation close the pipeline. Whenever
 * possible try to avoid using this version and use Pipeline.sync() as it won't go through all the
 * responses and generate the right response type (usually it is a waste of time).
 * @return A list of all the responses in the order you executed them.
 */
public List<Object> syncAndReturnAll() {
 if (getPipelinedResponseLength() > 0) {
  List<Object> unformatted = client.getMany(getPipelinedResponseLength());
  List<Object> formatted = new ArrayList<Object>();
  for (Object o : unformatted) {
   try {
    formatted.add(generateResponse(o).get());
   } catch (JedisDataException e) {
    formatted.add(e);
   }
  }
  return formatted;
 } else {
  return java.util.Collections.<Object> emptyList();
 }
}

相关文章

微信公众号

最新文章

更多

Pipeline类方法