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

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

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

Pipeline.spop介绍

暂无

代码示例

代码示例来源:origin: spring-projects/spring-data-redis

@Override
public List<byte[]> sPop(byte[] key, long count) {
  Assert.notNull(key, "Key must not be null!");
  try {
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().spop(key, count), ArrayList::new));
      return null;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().spop(key, count), ArrayList::new));
      return null;
    }
    return new ArrayList<>(connection.getJedis().spop(key, count));
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

代码示例来源:origin: spring-projects/spring-data-redis

@Override
public byte[] sPop(byte[] key) {
  Assert.notNull(key, "Key must not be null!");
  try {
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().spop(key)));
      return null;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().spop(key)));
      return null;
    }
    return connection.getJedis().spop(key);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

代码示例来源:origin: com.netflix.dyno/dyno-jedis

@Override
Response<String> execute(Pipeline jedisPipeline) throws DynoException {
  return jedisPipeline.spop(key);
}

代码示例来源:origin: com.netflix.spinnaker.kork/kork-jedis

@Override
public Response<byte[]> spop(byte[] key) {
 String command = "spop";
 return instrumented(command, () -> delegated.spop(key));
}

代码示例来源:origin: com.netflix.spinnaker.kork/kork-jedis

@Override
public Response<String> spop(String key) {
 String command = "spop";
 return instrumented(command, () -> delegated.spop(key));
}

代码示例来源:origin: com.netflix.spinnaker.kork/kork-jedis

@Override
public Response<Set<String>> spop(String key, long count) {
 String command = "spop";
 return instrumented(command, () -> delegated.spop(key, count));
}

代码示例来源:origin: com.netflix.spinnaker.kork/kork-jedis

@Override
public Response<Set<byte[]>> spop(byte[] key, long count) {
 String command = "spop";
 return instrumented(command, () -> delegated.spop(key, count));
}

代码示例来源:origin: org.springframework.data/spring-data-redis

@Override
public List<byte[]> sPop(byte[] key, long count) {
  Assert.notNull(key, "Key must not be null!");
  try {
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().spop(key, count), ArrayList::new));
      return null;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().spop(key, count), ArrayList::new));
      return null;
    }
    return new ArrayList<>(connection.getJedis().spop(key, count));
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

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

@Override
public List<byte[]> sPop(byte[] key, long count) {
  Assert.notNull(key, "Key must not be null!");
  try {
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().spop(key, count), ArrayList::new));
      return null;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().spop(key, count), ArrayList::new));
      return null;
    }
    return new ArrayList<>(connection.getJedis().spop(key, count));
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

代码示例来源:origin: org.springframework.data/spring-data-redis

@Override
public byte[] sPop(byte[] key) {
  Assert.notNull(key, "Key must not be null!");
  try {
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().spop(key)));
      return null;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().spop(key)));
      return null;
    }
    return connection.getJedis().spop(key);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

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

@Override
public byte[] sPop(byte[] key) {
  Assert.notNull(key, "Key must not be null!");
  try {
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().spop(key)));
      return null;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().spop(key)));
      return null;
    }
    return connection.getJedis().spop(key);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

相关文章

Pipeline类方法