提交 767a405f authored 作者: liuhaiquan's avatar liuhaiquan

删除system 打印的数字

上级 e4f0b1ec
...@@ -28,7 +28,6 @@ public class RedisGeoUntil { ...@@ -28,7 +28,6 @@ public class RedisGeoUntil {
//Point的属性值,x轴是经度longitude,y轴是纬度latitude。 //Point的属性值,x轴是经度longitude,y轴是纬度latitude。
Point point = new Point(longitudeX,latitudeY); Point point = new Point(longitudeX,latitudeY);
Long addedNum = redisTemplate.opsForGeo().add(redisKey,point,code); Long addedNum = redisTemplate.opsForGeo().add(redisKey,point,code);
System.out.println(addedNum);
} }
...@@ -52,7 +51,6 @@ public class RedisGeoUntil { ...@@ -52,7 +51,6 @@ public class RedisGeoUntil {
//删除 //删除
//redisTemplate.opsForZSet().remove(redisKey,"hangzhou5"); //redisTemplate.opsForZSet().remove(redisKey,"hangzhou5");
Long remove = redisTemplate.boundZSetOps(redisKey).remove(code); Long remove = redisTemplate.boundZSetOps(redisKey).remove(code);
System.out.println(remove);
} }
...@@ -63,7 +61,6 @@ public class RedisGeoUntil { ...@@ -63,7 +61,6 @@ public class RedisGeoUntil {
//修改(先删除再新增) //修改(先删除再新增)
deleteRedisGeo( redisKey , code); deleteRedisGeo( redisKey , code);
insertRedisGeo( redisKey , longitudeX, latitudeY, code); insertRedisGeo( redisKey , longitudeX, latitudeY, code);
System.out.println();
} }
...@@ -78,7 +75,6 @@ public class RedisGeoUntil { ...@@ -78,7 +75,6 @@ public class RedisGeoUntil {
pointList.add(redisGeo); pointList.add(redisGeo);
} }
} }
System.out.println(pointList);
return pointList; return pointList;
} }
...@@ -89,7 +85,6 @@ public class RedisGeoUntil { ...@@ -89,7 +85,6 @@ public class RedisGeoUntil {
public Point getRedisGeo(String redisKey , String code) { public Point getRedisGeo(String redisKey , String code) {
//查询可以查询多个 经纬度 //查询可以查询多个 经纬度
List<Point> pointsAll = redisTemplate.opsForGeo().position(redisKey,code); List<Point> pointsAll = redisTemplate.opsForGeo().position(redisKey,code);
System.out.println(pointsAll);
if(!CollectionUtils.isEmpty(pointsAll)){ if(!CollectionUtils.isEmpty(pointsAll)){
return pointsAll.get(0); return pointsAll.get(0);
} }
...@@ -104,7 +99,6 @@ public class RedisGeoUntil { ...@@ -104,7 +99,6 @@ public class RedisGeoUntil {
Distance disFiveKmFive = new Distance(Integer.MAX_VALUE, Metrics.KILOMETERS); Distance disFiveKmFive = new Distance(Integer.MAX_VALUE, Metrics.KILOMETERS);
RedisGeoCommands.GeoRadiusCommandArgs argsFiveKmFive = RedisGeoCommands.GeoRadiusCommandArgs.newGeoRadiusArgs().includeDistance().includeCoordinates().sortAscending().limit(5); RedisGeoCommands.GeoRadiusCommandArgs argsFiveKmFive = RedisGeoCommands.GeoRadiusCommandArgs.newGeoRadiusArgs().includeDistance().includeCoordinates().sortAscending().limit(5);
GeoResults<RedisGeoCommands.GeoLocation<String>> resultsFiveKmFive = redisTemplate.opsForGeo().radius(redisKey,code,disFiveKmFive,argsFiveKmFive); GeoResults<RedisGeoCommands.GeoLocation<String>> resultsFiveKmFive = redisTemplate.opsForGeo().radius(redisKey,code,disFiveKmFive,argsFiveKmFive);
System.out.println(resultsFiveKmFive);
return resultsFiveKmFive; return resultsFiveKmFive;
} }
...@@ -119,7 +113,6 @@ public class RedisGeoUntil { ...@@ -119,7 +113,6 @@ public class RedisGeoUntil {
Circle circleCenter = new Circle(pointCenter, distanceCenter); Circle circleCenter = new Circle(pointCenter, distanceCenter);
RedisGeoCommands.GeoRadiusCommandArgs argsCircle = RedisGeoCommands.GeoRadiusCommandArgs.newGeoRadiusArgs().includeDistance().includeCoordinates().sortAscending().limit(limit); RedisGeoCommands.GeoRadiusCommandArgs argsCircle = RedisGeoCommands.GeoRadiusCommandArgs.newGeoRadiusArgs().includeDistance().includeCoordinates().sortAscending().limit(limit);
GeoResults<RedisGeoCommands.GeoLocation<String>> resultsDis = redisTemplate.opsForGeo().radius(redisKey,circleCenter ,argsCircle); GeoResults<RedisGeoCommands.GeoLocation<String>> resultsDis = redisTemplate.opsForGeo().radius(redisKey,circleCenter ,argsCircle);
System.out.println(resultsDis);
return resultsDis; return resultsDis;
} }
...@@ -129,7 +122,6 @@ public class RedisGeoUntil { ...@@ -129,7 +122,6 @@ public class RedisGeoUntil {
*/ */
public List<String> getRedisGeoListHash(String redisKey , String code) { public List<String> getRedisGeoListHash(String redisKey , String code) {
List<String> resultsHash = redisTemplate.opsForGeo().hash(redisKey,code); List<String> resultsHash = redisTemplate.opsForGeo().hash(redisKey,code);
System.out.println(resultsHash);
return resultsHash; return resultsHash;
} }
...@@ -138,7 +130,6 @@ public class RedisGeoUntil { ...@@ -138,7 +130,6 @@ public class RedisGeoUntil {
*/ */
public Distance getRedisGeoListTwoSpace(String redisKey , String codeOne,String codeTwo) { public Distance getRedisGeoListTwoSpace(String redisKey , String codeOne,String codeTwo) {
Distance disTwoPlace = redisTemplate.opsForGeo().distance(redisKey,codeOne,codeTwo, RedisGeoCommands.DistanceUnit.KILOMETERS); Distance disTwoPlace = redisTemplate.opsForGeo().distance(redisKey,codeOne,codeTwo, RedisGeoCommands.DistanceUnit.KILOMETERS);
System.out.println(disTwoPlace);
return disTwoPlace; return disTwoPlace;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论