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

x33g5p2x  于2022-01-21 转载在 其他  
字(3.5k)|赞(0)|评价(0)|浏览(187)

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

Jedis.pfcount介绍

暂无

代码示例

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

@Override
 public Long execute(Jedis connection) {
  return connection.pfcount(keys);
 }
}.runBinary(keys.length, keys);

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

@Override
 public Long execute(Jedis connection) {
  return connection.pfcount(keys);
 }
}.run(keys.length, keys);

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

@Override
 public Long execute(Jedis connection) {
  return connection.pfcount(key);
 }
}.runBinary(key);

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

@Override
 public Long execute(Jedis connection) {
  return connection.pfcount(key);
 }
}.run(key);

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

@Override
public long pfcount(String key) {
 Jedis j = getShard(key);
 return j.pfcount(key);
}

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

@Override
public long pfcount(final byte[] key) {
 Jedis j = getShard(key);
 return j.pfcount(key);
}

代码示例来源:origin: Netflix/conductor

@Override
public long pfcount(String key) {
 Jedis jedis = null;
  try {
   jedis = jedisPool.getResource();
   return jedis.pfcount(key);
  } finally {
   if (jedis != null)
    jedis.close();
  }
}

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

@Override
public Long pfCount(byte[]... keys) {
  Assert.notEmpty(keys, "PFCOUNT requires at least one non 'null' key.");
  Assert.noNullElements(keys, "Keys for PFCOUNT must not contain 'null'.");
  try {
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().pfcount(keys)));
      return null;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().pfcount(keys)));
      return null;
    }
    return connection.getJedis().pfcount(keys);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

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

@Override
 public Long execute(Jedis connection) {
  return connection.pfcount(keys);
 }
}.run(keys.length, keys);

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

@Override
 public Long execute(Jedis connection) {
  return connection.pfcount(key);
 }
}.run(key);

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

@Override
 public Long execute(Jedis connection) {
  return connection.pfcount(key);
 }
}.runBinary(key);

代码示例来源:origin: io.leopard/leopard-redis

@Override
public long pfcount(String... keys) {
  return jedis.pfcount(keys);
}

代码示例来源:origin: io.leopard/leopard-redis

@Override
public long pfcount(String... keys) {
  return jedis.pfcount(keys);
}

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

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

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

@Override
public long pfcount(String... keys) {
 String command = "pfcount";
 return instrumented(command, () -> delegated.pfcount(keys));
}

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

@Override
public Long pfcount(byte[]... keys) {
 String command = "pfcount";
 return instrumented(command, () -> delegated.pfcount(keys));
}

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

@Override
public long pfcount(final byte[] key) {
 Jedis j = getShard(key);
 return j.pfcount(key);
}

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

@Override
public long pfcount(final String key) {
 Jedis j = getShard(key);
 return j.pfcount(key);
}

代码示例来源:origin: org.nutz/nutz-integration-jedis

public long pfcount(byte[] key) {
  Jedis jedis = getJedis();
  try {
    return jedis.pfcount(key);
  } finally {Streams.safeClose(jedis);}
}

代码示例来源:origin: org.nutz/nutz-integration-jedis

public long pfcount(String... keys) {
  Jedis jedis = getJedis();
  try {
    return jedis.pfcount(keys);
  } finally {Streams.safeClose(jedis);}
}

相关文章

微信公众号

最新文章

更多

Jedis类方法