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

x33g5p2x  于2022-01-26 转载在 其他  
字(8.7k)|赞(0)|评价(0)|浏览(157)

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

Pipeline.geoadd介绍

暂无

代码示例

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

@Override
public Long geoAdd(byte[] key, Map<byte[], Point> memberCoordinateMap) {
  Assert.notNull(key, "Key must not be null!");
  Assert.notNull(memberCoordinateMap, "MemberCoordinateMap must not be null!");
  Map<byte[], GeoCoordinate> redisGeoCoordinateMap = new HashMap<>();
  for (byte[] mapKey : memberCoordinateMap.keySet()) {
    redisGeoCoordinateMap.put(mapKey, JedisConverters.toGeoCoordinate(memberCoordinateMap.get(mapKey)));
  }
  try {
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().geoadd(key, redisGeoCoordinateMap)));
      return null;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().geoadd(key, redisGeoCoordinateMap)));
      return null;
    }
    return connection.getJedis().geoadd(key, redisGeoCoordinateMap);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

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

@Override
public Long geoAdd(byte[] key, Iterable<GeoLocation<byte[]>> locations) {
  Assert.notNull(key, "Key must not be null!");
  Assert.notNull(locations, "Locations must not be null!");
  Map<byte[], redis.clients.jedis.GeoCoordinate> redisGeoCoordinateMap = new HashMap<>();
  for (GeoLocation<byte[]> location : locations) {
    redisGeoCoordinateMap.put(location.getName(), JedisConverters.toGeoCoordinate(location.getPoint()));
  }
  try {
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().geoadd(key, redisGeoCoordinateMap)));
      return null;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().geoadd(key, redisGeoCoordinateMap)));
      return null;
    }
    return connection.getJedis().geoadd(key, redisGeoCoordinateMap);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

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

@Override
public Long geoAdd(byte[] key, Point point, byte[] member) {
  Assert.notNull(key, "Key must not be null!");
  Assert.notNull(point, "Point must not be null!");
  Assert.notNull(member, "Member must not be null!");
  try {
    if (isPipelined()) {
      pipeline(connection
          .newJedisResult(connection.getRequiredPipeline().geoadd(key, point.getX(), point.getY(), member)));
      return null;
    }
    if (isQueueing()) {
      transaction(connection
          .newJedisResult(connection.getRequiredTransaction().geoadd(key, point.getX(), point.getY(), member)));
      return null;
    }
    return connection.getJedis().geoadd(key, point.getX(), point.getY(), member);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

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

@Override
public Response<Long> geoadd(String key, double longitude, double latitude, String member) {
 String command = "geoadd";
 return instrumented(command, () -> delegated.geoadd(key, longitude, latitude, member));
}

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

@Override
public Response<Long> geoadd(byte[] key, Map<byte[], GeoCoordinate> memberCoordinateMap) {
 String command = "geoadd";
 return instrumented(command, () -> delegated.geoadd(key, memberCoordinateMap));
}

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

@Override
public Response<Long> geoadd(String key, Map<String, GeoCoordinate> memberCoordinateMap) {
 String command = "geoadd";
 return instrumented(command, () -> delegated.geoadd(key, memberCoordinateMap));
}

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

@Override
public Response<Long> geoadd(byte[] key, double longitude, double latitude, byte[] member) {
 String command = "geoadd";
 return instrumented(command, () -> delegated.geoadd(key, longitude, latitude, member));
}

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

@Override
public Long geoAdd(byte[] key, Map<byte[], Point> memberCoordinateMap) {
  Assert.notNull(key, "Key must not be null!");
  Assert.notNull(memberCoordinateMap, "MemberCoordinateMap must not be null!");
  Map<byte[], GeoCoordinate> redisGeoCoordinateMap = new HashMap<>();
  for (byte[] mapKey : memberCoordinateMap.keySet()) {
    redisGeoCoordinateMap.put(mapKey, JedisConverters.toGeoCoordinate(memberCoordinateMap.get(mapKey)));
  }
  try {
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().geoadd(key, redisGeoCoordinateMap)));
      return null;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().geoadd(key, redisGeoCoordinateMap)));
      return null;
    }
    return connection.getJedis().geoadd(key, redisGeoCoordinateMap);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

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

@Override
public Long geoAdd(byte[] key, Map<byte[], Point> memberCoordinateMap) {
  Assert.notNull(key, "Key must not be null!");
  Assert.notNull(memberCoordinateMap, "MemberCoordinateMap must not be null!");
  Map<byte[], GeoCoordinate> redisGeoCoordinateMap = new HashMap<>();
  for (byte[] mapKey : memberCoordinateMap.keySet()) {
    redisGeoCoordinateMap.put(mapKey, JedisConverters.toGeoCoordinate(memberCoordinateMap.get(mapKey)));
  }
  try {
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().geoadd(key, redisGeoCoordinateMap)));
      return null;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().geoadd(key, redisGeoCoordinateMap)));
      return null;
    }
    return connection.getJedis().geoadd(key, redisGeoCoordinateMap);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

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

@Override
public Long geoAdd(byte[] key, Iterable<GeoLocation<byte[]>> locations) {
  Assert.notNull(key, "Key must not be null!");
  Assert.notNull(locations, "Locations must not be null!");
  Map<byte[], redis.clients.jedis.GeoCoordinate> redisGeoCoordinateMap = new HashMap<>();
  for (GeoLocation<byte[]> location : locations) {
    redisGeoCoordinateMap.put(location.getName(), JedisConverters.toGeoCoordinate(location.getPoint()));
  }
  try {
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().geoadd(key, redisGeoCoordinateMap)));
      return null;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().geoadd(key, redisGeoCoordinateMap)));
      return null;
    }
    return connection.getJedis().geoadd(key, redisGeoCoordinateMap);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

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

@Override
public Long geoAdd(byte[] key, Iterable<GeoLocation<byte[]>> locations) {
  Assert.notNull(key, "Key must not be null!");
  Assert.notNull(locations, "Locations must not be null!");
  Map<byte[], redis.clients.jedis.GeoCoordinate> redisGeoCoordinateMap = new HashMap<>();
  for (GeoLocation<byte[]> location : locations) {
    redisGeoCoordinateMap.put(location.getName(), JedisConverters.toGeoCoordinate(location.getPoint()));
  }
  try {
    if (isPipelined()) {
      pipeline(connection.newJedisResult(connection.getRequiredPipeline().geoadd(key, redisGeoCoordinateMap)));
      return null;
    }
    if (isQueueing()) {
      transaction(connection.newJedisResult(connection.getRequiredTransaction().geoadd(key, redisGeoCoordinateMap)));
      return null;
    }
    return connection.getJedis().geoadd(key, redisGeoCoordinateMap);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

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

@Override
public Long geoAdd(byte[] key, Point point, byte[] member) {
  Assert.notNull(key, "Key must not be null!");
  Assert.notNull(point, "Point must not be null!");
  Assert.notNull(member, "Member must not be null!");
  try {
    if (isPipelined()) {
      pipeline(connection
          .newJedisResult(connection.getRequiredPipeline().geoadd(key, point.getX(), point.getY(), member)));
      return null;
    }
    if (isQueueing()) {
      transaction(connection
          .newJedisResult(connection.getRequiredTransaction().geoadd(key, point.getX(), point.getY(), member)));
      return null;
    }
    return connection.getJedis().geoadd(key, point.getX(), point.getY(), member);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

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

@Override
public Long geoAdd(byte[] key, Point point, byte[] member) {
  Assert.notNull(key, "Key must not be null!");
  Assert.notNull(point, "Point must not be null!");
  Assert.notNull(member, "Member must not be null!");
  try {
    if (isPipelined()) {
      pipeline(connection
          .newJedisResult(connection.getRequiredPipeline().geoadd(key, point.getX(), point.getY(), member)));
      return null;
    }
    if (isQueueing()) {
      transaction(connection
          .newJedisResult(connection.getRequiredTransaction().geoadd(key, point.getX(), point.getY(), member)));
      return null;
    }
    return connection.getJedis().geoadd(key, point.getX(), point.getY(), member);
  } catch (Exception ex) {
    throw convertJedisAccessException(ex);
  }
}

相关文章

微信公众号

最新文章

更多

Pipeline类方法