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

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

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

Jedis.pfmerge介绍

暂无

代码示例

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

@Override
 public String execute(Jedis connection) {
  return connection.pfmerge(destkey, sourcekeys);
 }
}.run(mergedKeys.length, mergedKeys);

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

@Override
 public String execute(Jedis connection) {
  return connection.pfmerge(destkey, sourcekeys);
 }
}.runBinary(wholeKeys.length, wholeKeys);

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

@Override
public void pfMerge(byte[] destinationKey, byte[]... sourceKeys) {
  Assert.notNull(destinationKey, "Destination key must not be null");
  Assert.notNull(sourceKeys, "Source keys must not be null");
  Assert.noNullElements(sourceKeys, "Keys for PFMERGE must not contain 'null'.");
  try {
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().pfmerge(destinationKey, sourceKeys)));
      return;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().pfmerge(destinationKey, sourceKeys)));
      return;
    }
    connection.getJedis().pfmerge(destinationKey, sourceKeys);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

代码示例来源:origin: mindwind/craft-atom

private String pfmerge0(Jedis j, String destkey, String... sourcekeys) {
  return j.pfmerge(destkey, sourcekeys);
}

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

@Override
 public String execute(Jedis connection) {
  return connection.pfmerge(destkey, sourcekeys);
 }
}.run(mergedKeys.length, mergedKeys);

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

@Override
 public String execute(Jedis connection) {
  return connection.pfmerge(destkey, sourcekeys);
 }
}.runBinary(wholeKeys.length, wholeKeys);

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

@Override
public String pfmerge(String destkey, String... sourcekeys) {
  return jedis.pfmerge(destkey, sourcekeys);
}

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

@Override
public String pfmerge(String destkey, String... sourcekeys) {
  return jedis.pfmerge(destkey, sourcekeys);
}

代码示例来源:origin: penggle/jedis-ms-sentinel

public String pfmerge(String destkey, String... sourcekeys) {
  return master.pfmerge(destkey, sourcekeys);
}

代码示例来源:origin: penggle/jedis-ms-sentinel

public String pfmerge(byte[] destkey, byte[]... sourcekeys) {
  return master.pfmerge(destkey, sourcekeys);
}

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

@Override
public String pfmerge(byte[] destkey, byte[]... sourcekeys) {
 String command = "pfmerge";
 return instrumented(command, () -> delegated.pfmerge(destkey, sourcekeys));
}

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

@Override
public String pfmerge(String destkey, String... sourcekeys) {
 String command = "pfmerge";
 return instrumented(command, () -> delegated.pfmerge(destkey, sourcekeys));
}

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

default String pfmerge(String destkey, String... sourcekeys) {
 return this.run((jedis, serializer) -> jedis.pfmerge(destkey, sourcekeys));
}

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

public String pfmerge(String destkey, String... sourcekeys) {
  Jedis jedis = getJedis();
  try {
    return jedis.pfmerge(destkey, sourcekeys);
  } finally {Streams.safeClose(jedis);}
}

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

public String pfmerge(byte[] destkey, byte[]... sourcekeys) {
  Jedis jedis = getJedis();
  try {
    return jedis.pfmerge(destkey, sourcekeys);
  } finally {Streams.safeClose(jedis);}
}

代码示例来源:origin: youtongluan/sumk

@Override
public java.lang.String pfmerge(byte[] destkey, byte[]... sourcekeys) {
  Exception e1 = null;
  for (int i = 0; i < tryCount; i++) {
    Jedis jedis = null;
    try {
      jedis = pool.getResource();
      return jedis.pfmerge(destkey, sourcekeys);
    } catch (Exception e) {
      if (isConnectException(e)) {
        Log.get(LOG_NAME).error(this.hosts + " - redis connection failed,idle=" + pool.getNumIdle()
            + ",active=" + pool.getNumActive(), e);
        e1 = e;
        continue;
      }
      Log.get(LOG_NAME).error("pfmerge - redis execute error!" + e.getMessage(), e);
      SumkException.throwException(12342411, e.getMessage(), e);
    } finally {
      close(jedis);
    }
  }
  handleRedisException(e1);
  throw new SumkException(12342423, "未知redis异常");
}

代码示例来源:origin: youtongluan/sumk

@Override
public java.lang.String pfmerge(java.lang.String destkey, java.lang.String... sourcekeys) {
  Exception e1 = null;
  for (int i = 0; i < tryCount; i++) {
    Jedis jedis = null;
    try {
      jedis = pool.getResource();
      return jedis.pfmerge(destkey, sourcekeys);
    } catch (Exception e) {
      if (isConnectException(e)) {
        Log.get(LOG_NAME).error(this.hosts + " - redis connection failed,idle=" + pool.getNumIdle()
            + ",active=" + pool.getNumActive(), e);
        e1 = e;
        continue;
      }
      Log.get(LOG_NAME).error("pfmerge - redis execute error!" + e.getMessage(), e);
      SumkException.throwException(12342411, e.getMessage(), e);
    } finally {
      close(jedis);
    }
  }
  handleRedisException(e1);
  throw new SumkException(12342423, "未知redis异常");
}

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

@Override
public void pfMerge(byte[] destinationKey, byte[]... sourceKeys) {
  Assert.notNull(destinationKey, "Destination key must not be null");
  Assert.notNull(sourceKeys, "Source keys must not be null");
  Assert.noNullElements(sourceKeys, "Keys for PFMERGE must not contain 'null'.");
  try {
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().pfmerge(destinationKey, sourceKeys)));
      return;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().pfmerge(destinationKey, sourceKeys)));
      return;
    }
    connection.getJedis().pfmerge(destinationKey, sourceKeys);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

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

@Override
public void pfMerge(byte[] destinationKey, byte[]... sourceKeys) {
  Assert.notNull(destinationKey, "Destination key must not be null");
  Assert.notNull(sourceKeys, "Source keys must not be null");
  Assert.noNullElements(sourceKeys, "Keys for PFMERGE must not contain 'null'.");
  try {
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().pfmerge(destinationKey, sourceKeys)));
      return;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().pfmerge(destinationKey, sourceKeys)));
      return;
    }
    connection.getJedis().pfmerge(destinationKey, sourceKeys);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

相关文章

微信公众号

最新文章

更多

Jedis类方法