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

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

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

JedisCluster.zinterstore介绍

暂无

代码示例

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

@Override
public Long zInterStore(byte[] destKey, byte[]... sets) {
  Assert.notNull(destKey, "Destination key must not be null!");
  Assert.notNull(sets, "Source sets must not be null!");
  Assert.noNullElements(sets, "Source sets must not contain null elements!");
  byte[][] allKeys = ByteUtils.mergeArrays(destKey, sets);
  if (ClusterSlotHashUtil.isSameSlotForAllKeys(allKeys)) {
    try {
      return connection.getCluster().zinterstore(destKey, sets);
    } catch (Exception ex) {
      throw convertJedisAccessException(ex);
    }
  }
  throw new InvalidDataAccessApiUsageException("ZINTERSTORE can only be executed when all keys map to the same slot");
}

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

@Override
public Long zInterStore(byte[] destKey, Aggregate aggregate, Weights weights, byte[]... sets) {
  Assert.notNull(destKey, "Destination key must not be null!");
  Assert.notNull(sets, "Source sets must not be null!");
  Assert.noNullElements(sets, "Source sets must not contain null elements!");
  Assert.isTrue(weights.size() == sets.length, () -> String
      .format("The number of weights (%d) must match the number of source sets (%d)!", weights.size(), sets.length));
  byte[][] allKeys = ByteUtils.mergeArrays(destKey, sets);
  if (ClusterSlotHashUtil.isSameSlotForAllKeys(allKeys)) {
    ZParams zparams = new ZParams().weights(weights.toArray()).aggregate(ZParams.Aggregate.valueOf(aggregate.name()));
    try {
      return connection.getCluster().zinterstore(destKey, zparams, sets);
    } catch (Exception ex) {
      throw convertJedisAccessException(ex);
    }
  }
  throw new IllegalArgumentException("ZINTERSTORE can only be executed when all keys map to the same slot");
}

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

public Long zinterstore(String dstkey, String... sets) {
  return jedisCluster.zinterstore(dstkey, sets);
}

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

public Long zinterstore(String dstkey, ZParams params, String... sets) {
  return jedisCluster.zinterstore(dstkey, params, sets);
}

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

public Long zinterstore(byte[] dstkey, byte[]... sets) {
  return jedisCluster.zinterstore(dstkey, sets);
}

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

public Long zinterstore(byte[] dstkey, ZParams params, byte[]... sets) {
  return jedisCluster.zinterstore(dstkey, params, sets);
}

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

@Override
public Long zInterStore(byte[] destKey, byte[]... sets) {
  Assert.notNull(destKey, "Destination key must not be null!");
  Assert.notNull(sets, "Source sets must not be null!");
  Assert.noNullElements(sets, "Source sets must not contain null elements!");
  byte[][] allKeys = ByteUtils.mergeArrays(destKey, sets);
  if (ClusterSlotHashUtil.isSameSlotForAllKeys(allKeys)) {
    try {
      return connection.getCluster().zinterstore(destKey, sets);
    } catch (Exception ex) {
      throw convertJedisAccessException(ex);
    }
  }
  throw new InvalidDataAccessApiUsageException("ZINTERSTORE can only be executed when all keys map to the same slot");
}

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

@Override
public Long zInterStore(byte[] destKey, byte[]... sets) {
  Assert.notNull(destKey, "Destination key must not be null!");
  Assert.notNull(sets, "Source sets must not be null!");
  Assert.noNullElements(sets, "Source sets must not contain null elements!");
  byte[][] allKeys = ByteUtils.mergeArrays(destKey, sets);
  if (ClusterSlotHashUtil.isSameSlotForAllKeys(allKeys)) {
    try {
      return connection.getCluster().zinterstore(destKey, sets);
    } catch (Exception ex) {
      throw convertJedisAccessException(ex);
    }
  }
  throw new InvalidDataAccessApiUsageException("ZINTERSTORE can only be executed when all keys map to the same slot");
}

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

@Override
public Long zInterStore(byte[] destKey, Aggregate aggregate, Weights weights, byte[]... sets) {
  Assert.notNull(destKey, "Destination key must not be null!");
  Assert.notNull(sets, "Source sets must not be null!");
  Assert.noNullElements(sets, "Source sets must not contain null elements!");
  Assert.isTrue(weights.size() == sets.length, () -> String
      .format("The number of weights (%d) must match the number of source sets (%d)!", weights.size(), sets.length));
  byte[][] allKeys = ByteUtils.mergeArrays(destKey, sets);
  if (ClusterSlotHashUtil.isSameSlotForAllKeys(allKeys)) {
    ZParams zparams = new ZParams().weightsByDouble(weights.toArray())
        .aggregate(ZParams.Aggregate.valueOf(aggregate.name()));
    try {
      return connection.getCluster().zinterstore(destKey, zparams, sets);
    } catch (Exception ex) {
      throw convertJedisAccessException(ex);
    }
  }
  throw new IllegalArgumentException("ZINTERSTORE can only be executed when all keys map to the same slot");
}

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

@Override
public Long zInterStore(byte[] destKey, Aggregate aggregate, Weights weights, byte[]... sets) {
  Assert.notNull(destKey, "Destination key must not be null!");
  Assert.notNull(sets, "Source sets must not be null!");
  Assert.noNullElements(sets, "Source sets must not contain null elements!");
  Assert.isTrue(weights.size() == sets.length, () -> String
      .format("The number of weights (%d) must match the number of source sets (%d)!", weights.size(), sets.length));
  byte[][] allKeys = ByteUtils.mergeArrays(destKey, sets);
  if (ClusterSlotHashUtil.isSameSlotForAllKeys(allKeys)) {
    ZParams zparams = new ZParams().weightsByDouble(weights.toArray())
        .aggregate(ZParams.Aggregate.valueOf(aggregate.name()));
    try {
      return connection.getCluster().zinterstore(destKey, zparams, sets);
    } catch (Exception ex) {
      throw convertJedisAccessException(ex);
    }
  }
  throw new IllegalArgumentException("ZINTERSTORE can only be executed when all keys map to the same slot");
}

相关文章

微信公众号

最新文章

更多

JedisCluster类方法