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

x33g5p2x  于2022-01-30 转载在 其他  
字(7.3k)|赞(0)|评价(0)|浏览(112)

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

Transaction.zunionstore介绍

暂无

代码示例

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

@Override
public Long zUnionStore(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!");
  try {
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().zunionstore(destKey, sets)));
      return null;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().zunionstore(destKey, sets)));
      return null;
    }
    return connection.getJedis().zunionstore(destKey, sets);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

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

@Override
public Long zUnionStore(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.notNull(weights, "Weights 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));
  try {
    ZParams zparams = new ZParams().weights(weights.toArray()).aggregate(ZParams.Aggregate.valueOf(aggregate.name()));
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().zunionstore(destKey, zparams, sets)));
      return null;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().zunionstore(destKey, zparams, sets)));
      return null;
    }
    return connection.getJedis().zunionstore(destKey, zparams, sets);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

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

private void zunionstore0(String destination, String... keys) {
  t.zunionstore(destination, keys);
}

代码示例来源:origin: Impetus/Kundera

((Transaction) connection).zunionstore(destStore, keySets.toArray(new String[] {}));

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

private void zunionstoremax0(String destination, String... keys) {
  t.zunionstore(destination, new ZParams().aggregate(Aggregate.MAX), keys);
}

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

private void zunionstoremin0(String destination, String... keys) {
  t.zunionstore(destination, new ZParams().aggregate(Aggregate.MIN), keys);
}

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

@SuppressWarnings("deprecation")
private void zunionstore_weights(String destination, Map<String, Integer> weightkeys) {
  Object[] objs = convert4zstore(weightkeys);
  String[] keys = (String[]) objs[0];
  int [] weights = (int[]) objs[1];
  t.zunionstore(destination, new ZParams().weights(weights), keys);
}

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

@SuppressWarnings("deprecation")
private void zunionstore_weights_max(String destination, Map<String, Integer> weightkeys) {
  Object[] objs = convert4zstore(weightkeys);
  String[] keys = (String[]) objs[0];
  int [] weights = (int[]) objs[1];
  t.zunionstore(destination, new ZParams().weights(weights).aggregate(Aggregate.MAX), keys);
}

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

@SuppressWarnings("deprecation")
private void zunionstore_weights_min(String destination, Map<String, Integer> weightkeys) {
  Object[] objs = convert4zstore(weightkeys);
  String[] keys = (String[]) objs[0];
  int [] weights = (int[]) objs[1];
  t.zunionstore(destination, new ZParams().weights(weights).aggregate(Aggregate.MIN), keys);
}

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

@Override
public Long zUnionStore(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!");
  try {
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().zunionstore(destKey, sets)));
      return null;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().zunionstore(destKey, sets)));
      return null;
    }
    return connection.getJedis().zunionstore(destKey, sets);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

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

@Override
public Long zUnionStore(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!");
  try {
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().zunionstore(destKey, sets)));
      return null;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().zunionstore(destKey, sets)));
      return null;
    }
    return connection.getJedis().zunionstore(destKey, sets);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

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

@Override
public Long zUnionStore(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.notNull(weights, "Weights 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));
  try {
    ZParams zparams = new ZParams().weightsByDouble(weights.toArray())
        .aggregate(ZParams.Aggregate.valueOf(aggregate.name()));
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().zunionstore(destKey, zparams, sets)));
      return null;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().zunionstore(destKey, zparams, sets)));
      return null;
    }
    return connection.getJedis().zunionstore(destKey, zparams, sets);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

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

@Override
public Long zUnionStore(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.notNull(weights, "Weights 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));
  try {
    ZParams zparams = new ZParams().weightsByDouble(weights.toArray())
        .aggregate(ZParams.Aggregate.valueOf(aggregate.name()));
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().zunionstore(destKey, zparams, sets)));
      return null;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().zunionstore(destKey, zparams, sets)));
      return null;
    }
    return connection.getJedis().zunionstore(destKey, zparams, sets);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

代码示例来源:origin: com.impetus.client/kundera-redis

((Transaction) connection).zunionstore(destStore, keySets.toArray(new String[] {}));

相关文章

微信公众号

最新文章

更多

Transaction类方法