本文整理了Java中redis.clients.jedis.Pipeline.setbit()
方法的一些代码示例,展示了Pipeline.setbit()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Pipeline.setbit()
方法的具体详情如下:
包路径:redis.clients.jedis.Pipeline
类名称:Pipeline
方法名:setbit
暂无
代码示例来源:origin: spring-projects/spring-data-redis
@Override
public Boolean setBit(byte[] key, long offset, boolean value) {
Assert.notNull(key, "Key must not be null!");
try {
if (isPipelined()) {
pipeline(connection
.newJedisResult(connection.getRequiredPipeline().setbit(key, offset, JedisConverters.toBit(value))));
return null;
}
if (isQueueing()) {
transaction(connection
.newJedisResult(connection.getRequiredTransaction().setbit(key, offset, JedisConverters.toBit(value))));
return null;
}
return connection.getJedis().setbit(key, offset, JedisConverters.toBit(value));
} catch (Exception ex) {
throw convertJedisAccessException(ex);
}
}
代码示例来源:origin: com.netflix.dyno/dyno-jedis
@Override
Response<Boolean> execute(Pipeline jedisPipeline) throws DynoException {
return jedisPipeline.setbit(key, offset, value);
}
代码示例来源:origin: Baqend/Orestes-Bloomfilter
/**
* Set all bits
*
* @param positions The positions to set
* @return {@code true} if any of the bits was previously unset.
*/
public boolean setAll(int... positions) {
List<Object> results = pool.transactionallyDo(p -> {
for (int position : positions)
p.setbit(name, position, true);
});
return results.stream().anyMatch(b -> !(Boolean) b);
}
代码示例来源:origin: com.netflix.spinnaker.kork/kork-jedis
@Override
public Response<Boolean> setbit(String key, long offset, boolean value) {
String command = "setbit";
return instrumented(command, () -> delegated.setbit(key, offset, value));
}
代码示例来源:origin: com.netflix.spinnaker.kork/kork-jedis
@Override
public Response<Boolean> setbit(byte[] key, long offset, byte[] value) {
String command = "setbit";
return instrumented(command, () -> delegated.setbit(key, offset, value));
}
代码示例来源:origin: org.springframework.data/spring-data-redis
@Override
public Boolean setBit(byte[] key, long offset, boolean value) {
Assert.notNull(key, "Key must not be null!");
try {
if (isPipelined()) {
pipeline(connection
.newJedisResult(connection.getRequiredPipeline().setbit(key, offset, JedisConverters.toBit(value))));
return null;
}
if (isQueueing()) {
transaction(connection
.newJedisResult(connection.getRequiredTransaction().setbit(key, offset, JedisConverters.toBit(value))));
return null;
}
return connection.getJedis().setbit(key, offset, JedisConverters.toBit(value));
} catch (Exception ex) {
throw convertJedisAccessException(ex);
}
}
代码示例来源:origin: apache/servicemix-bundles
@Override
public Boolean setBit(byte[] key, long offset, boolean value) {
Assert.notNull(key, "Key must not be null!");
try {
if (isPipelined()) {
pipeline(connection
.newJedisResult(connection.getRequiredPipeline().setbit(key, offset, JedisConverters.toBit(value))));
return null;
}
if (isQueueing()) {
transaction(connection
.newJedisResult(connection.getRequiredTransaction().setbit(key, offset, JedisConverters.toBit(value))));
return null;
}
return connection.getJedis().setbit(key, offset, JedisConverters.toBit(value));
} catch (Exception ex) {
throw convertJedisAccessException(ex);
}
}
代码示例来源:origin: Baqend/Orestes-Bloomfilter
@Ignore
@Test
public void testOverflow() {
Jedis jedis = new Jedis("localhost");
Pipeline p = jedis.pipelined();
p.multi();
for (int i = 0; i < 10000; i++) {
p.setbit("test", 1, true); //or any other call
}
Response<List<Object>> exec = p.exec();
p.sync();
exec.get();
}
内容来源于网络,如有侵权,请联系作者删除!