本文整理了Java中redis.clients.jedis.Pipeline.hmget()
方法的一些代码示例,展示了Pipeline.hmget()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Pipeline.hmget()
方法的具体详情如下:
包路径:redis.clients.jedis.Pipeline
类名称:Pipeline
方法名:hmget
暂无
代码示例来源:origin: spring-projects/spring-data-redis
@Override
public List<byte[]> hMGet(byte[] key, byte[]... fields) {
Assert.notNull(key, "Key must not be null!");
Assert.notNull(fields, "Fields must not be null!");
try {
if (isPipelined()) {
pipeline(connection.newJedisResult(connection.getRequiredPipeline().hmget(key, fields)));
return null;
}
if (isQueueing()) {
transaction(connection.newJedisResult(connection.getRequiredTransaction().hmget(key, fields)));
return null;
}
return connection.getJedis().hmget(key, fields);
} catch (Exception ex) {
throw convertJedisAccessException(ex);
}
}
代码示例来源:origin: com.netflix.spinnaker.kork/kork-jedis
@Override
public Response<List<String>> hmget(String key, String... fields) {
String command = "hmget";
return instrumented(command, () -> delegated.hmget(key, fields));
}
代码示例来源:origin: com.netflix.spinnaker.kork/kork-jedis
@Override
public Response<List<byte[]>> hmget(byte[] key, byte[]... fields) {
String command = "hmget";
return instrumented(command, () -> delegated.hmget(key, fields));
}
代码示例来源:origin: com.netflix.dyno/dyno-jedis
@Override
Response<List<String>> execute(Pipeline jedisPipeline) throws DynoException {
long startTime = System.nanoTime() / 1000;
try {
return jedisPipeline.hmget(key, fields);
} finally {
long duration = System.nanoTime() / 1000 - startTime;
opMonitor.recordSendLatency(OpName.HMGET.name(), duration, TimeUnit.MICROSECONDS);
}
}
}.execute(key, OpName.HMGET);
代码示例来源:origin: com.netflix.dyno/dyno-jedis
@Override
Response<List<byte[]>> execute(Pipeline jedisPipeline) throws DynoException {
long startTime = System.nanoTime() / 1000;
try {
return jedisPipeline.hmget(key, fields);
} finally {
long duration = System.nanoTime() / 1000 - startTime;
opMonitor.recordSendLatency(OpName.HMGET.name(), duration, TimeUnit.MICROSECONDS);
}
}
}.execute(key, OpName.HMGET);
代码示例来源:origin: com.github.biezhi/unique-support-redis
@Override
List<String> execute() {
Pipeline pipeline = jedis.getShard(key).pipelined();
Response<List<String>> result = pipeline.hmget(key, fields);
pipeline.expire(key, expire);
pipeline.sync();
return result.get();
}
}.getResult();
代码示例来源:origin: org.springframework.data/spring-data-redis
@Override
public List<byte[]> hMGet(byte[] key, byte[]... fields) {
Assert.notNull(key, "Key must not be null!");
Assert.notNull(fields, "Fields must not be null!");
try {
if (isPipelined()) {
pipeline(connection.newJedisResult(connection.getRequiredPipeline().hmget(key, fields)));
return null;
}
if (isQueueing()) {
transaction(connection.newJedisResult(connection.getRequiredTransaction().hmget(key, fields)));
return null;
}
return connection.getJedis().hmget(key, fields);
} catch (Exception ex) {
throw convertJedisAccessException(ex);
}
}
代码示例来源:origin: apache/servicemix-bundles
@Override
public List<byte[]> hMGet(byte[] key, byte[]... fields) {
Assert.notNull(key, "Key must not be null!");
Assert.notNull(fields, "Fields must not be null!");
try {
if (isPipelined()) {
pipeline(connection.newJedisResult(connection.getRequiredPipeline().hmget(key, fields)));
return null;
}
if (isQueueing()) {
transaction(connection.newJedisResult(connection.getRequiredTransaction().hmget(key, fields)));
return null;
}
return connection.getJedis().hmget(key, fields);
} catch (Exception ex) {
throw convertJedisAccessException(ex);
}
}
内容来源于网络,如有侵权,请联系作者删除!