本文整理了Java中redis.clients.jedis.Pipeline.zscore()
方法的一些代码示例,展示了Pipeline.zscore()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Pipeline.zscore()
方法的具体详情如下:
包路径:redis.clients.jedis.Pipeline
类名称:Pipeline
方法名:zscore
暂无
代码示例来源:origin: spring-projects/spring-data-redis
@Override
public Double zScore(byte[] key, byte[] value) {
Assert.notNull(key, "Key must not be null!");
Assert.notNull(value, "Value must not be null!");
try {
if (isPipelined()) {
pipeline(connection.newJedisResult(connection.getRequiredPipeline().zscore(key, value)));
return null;
}
if (isQueueing()) {
transaction(connection.newJedisResult(connection.getRequiredTransaction().zscore(key, value)));
return null;
}
return connection.getJedis().zscore(key, value);
} catch (Exception ex) {
throw convertJedisAccessException(ex);
}
}
代码示例来源:origin: com.netflix.dyno/dyno-jedis
@Override
Response<Double> execute(Pipeline jedisPipeline) throws DynoException {
return jedisPipeline.zscore(key, member);
}
代码示例来源:origin: com.netflix.spinnaker.kork/kork-jedis
@Override
public Response<Double> zscore(byte[] key, byte[] member) {
String command = "zscore";
return instrumented(command, () -> delegated.zscore(key, member));
}
代码示例来源:origin: com.netflix.spinnaker.kork/kork-jedis
@Override
public Response<Double> zscore(String key, String member) {
String command = "zscore";
return instrumented(command, () -> delegated.zscore(key, member));
}
代码示例来源:origin: Baqend/Orestes-Bloomfilter
@Override
public List<Long> getRemainingTTLs(List<T> elements, TimeUnit unit) {
try (Jedis jedis = pool.getResource()) {
// Retrieve scores from Redis
Pipeline pipe = jedis.pipelined();
elements.forEach(it -> pipe.zscore(keys.TTL_KEY, it.toString()));
List<Object> scores = pipe.syncAndReturnAll();
// Convert to desired time
return scores
.stream()
.map(score -> (Double) score)
.map(score -> scoreToRemainingTTL(score, unit))
.collect(Collectors.toList());
}
}
代码示例来源:origin: Baqend/Orestes-Bloomfilter
@Override
public List<Boolean> isKnown(List<T> elements) {
try (Jedis jedis = pool.getResource()) {
// Retrieve scores from Redis
Pipeline pipe = jedis.pipelined();
elements.forEach(it -> pipe.zscore(keys.TTL_KEY, it.toString()));
List<Object> scores = pipe.syncAndReturnAll();
long endOfGracePeriod = now() - config.gracePeriod();
// Convert to boolean
return scores
.stream()
.map(score -> score != null && ((Double) score).longValue() > endOfGracePeriod)
.collect(Collectors.toList());
}
}
代码示例来源:origin: org.springframework.data/spring-data-redis
@Override
public Double zScore(byte[] key, byte[] value) {
Assert.notNull(key, "Key must not be null!");
Assert.notNull(value, "Value must not be null!");
try {
if (isPipelined()) {
pipeline(connection.newJedisResult(connection.getRequiredPipeline().zscore(key, value)));
return null;
}
if (isQueueing()) {
transaction(connection.newJedisResult(connection.getRequiredTransaction().zscore(key, value)));
return null;
}
return connection.getJedis().zscore(key, value);
} catch (Exception ex) {
throw convertJedisAccessException(ex);
}
}
代码示例来源:origin: apache/servicemix-bundles
@Override
public Double zScore(byte[] key, byte[] value) {
Assert.notNull(key, "Key must not be null!");
Assert.notNull(value, "Value must not be null!");
try {
if (isPipelined()) {
pipeline(connection.newJedisResult(connection.getRequiredPipeline().zscore(key, value)));
return null;
}
if (isQueueing()) {
transaction(connection.newJedisResult(connection.getRequiredTransaction().zscore(key, value)));
return null;
}
return connection.getJedis().zscore(key, value);
} catch (Exception ex) {
throw convertJedisAccessException(ex);
}
}
内容来源于网络,如有侵权,请联系作者删除!