Redis根据中心点坐标和半径筛选符合的数据

目录

1.启动Redis​编辑

2.导入maven依赖

3.添加redis配置

4.编写RedisService

5.使用

6.验证


1.启动Redis

2.导入maven依赖

java 复制代码
<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>

3.添加redis配置

java 复制代码
spring.redis.host=127.0.0.1
#Redis服务器连接端口
spring.redis.port=6379
#Redis服务器连接密码(默认为空)
spring.redis.password=
#连接超时时间(毫秒)
spring.redis.timeout=30000

4.编写RedisService

java 复制代码
package com.zsp.quartz.service.impl;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.geo.Circle;
import org.springframework.data.geo.Distance;
import org.springframework.data.geo.GeoResults;
import org.springframework.data.geo.Point;
import org.springframework.data.redis.connection.RedisGeoCommands;
import org.springframework.data.redis.core.GeoOperations;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.ValueOperations;
import org.springframework.stereotype.Service;
import java.util.concurrent.TimeUnit;

@Service
public class RedisService {

    @Autowired
    private RedisTemplate<String, String> redisTemplate;

    // 存入redis
    public void setValue(String key, String value) {
        ValueOperations<String, String> valueOperations = redisTemplate.opsForValue();
        valueOperations.set(key, value);
    }
    // 从redis取值
    public String getValue(String key) {
        ValueOperations<String, String> valueOperations = redisTemplate.opsForValue();
        return valueOperations.get(key);
    }
    // 存入redis带过期时间
    public void setValue(String key, String value, long expirationTimeInSeconds) {
        ValueOperations<String, String> valueOperations = redisTemplate.opsForValue();
        valueOperations.set(key, value, expirationTimeInSeconds, TimeUnit.SECONDS);
    }

    /**
     * 添加地理位置信息,附加名字
      * @param key 存入redis的key
     * @param longitude 经度
     * @param latitude  纬度
     * @param member   附加值 这里附加了名字
     */ 
    public void addLocation(String key, double longitude, double latitude, String member) {
        Point point = new Point(longitude, latitude);
        GeoOperations<String, String> geoOps = redisTemplate.opsForGeo();
        geoOps.add(key, point, member);
    }

    /**
     * 获取地理位置信息
     * @param key 存入redis的key
     * @param longitude 中心点经度
     * @param latitude  中心点纬度
     * @param radius 筛选半径
     * @return
     */
    public GeoResults<RedisGeoCommands.GeoLocation<String>> getLocationsInRadius(String key, double longitude, double latitude, double radius) {
        Point point = new Point(longitude, latitude);
        Distance distance = new Distance(radius);
        Circle circle = new Circle(point, distance);
        GeoOperations<String, String> geoOps = redisTemplate.opsForGeo();
        return geoOps.radius(key, circle);
    }
}

5.使用

java 复制代码
 @Autowired
    RedisService redisService;
    @Test
    void testForGeo(){
        redisService.addLocation("locations", 13.361389, 38.115556, "Paris");
        redisService.addLocation("locations", 13.4125, 39.523333, "Berlin");
        redisService.addLocation("locations", -0.127758, 51.507351, "London");

        GeoResults<RedisGeoCommands.GeoLocation<String>> locations = redisService.getLocationsInRadius("locations", 13.361389, 38.115556, 500000);
        for (GeoResult<RedisGeoCommands.GeoLocation<String>> location : locations) {
            System.out.println(location.getContent().getName());
        }
    }

6.验证

筛选半径单位:米,先存进去,再根据key和筛选半径取出符合条件的数据

相关推荐
u***u6851 天前
React环境
前端·react.js·前端框架
X***E4631 天前
前端数据分析应用
前端·数据挖掘·数据分析
4***14901 天前
React社区
前端·react.js·前端框架
LFly_ice1 天前
学习React-24-路由传参
前端·学习·react.js
Lhuu(重开版1 天前
CSS:动效布局动画
前端·css
Q***K551 天前
前端构建工具
前端
一只会写代码的猫1 天前
面向高性能计算与网络服务的C++微内核架构设计与多线程优化实践探索与经验分享
java·开发语言·jvm
laocooon5238578861 天前
创建了一个带悬停效果的“我的个人主页“按钮
前端
2013编程爱好者1 天前
Vue工程结构分析
前端·javascript·vue.js·typescript·前端框架
萤丰信息1 天前
智慧园区能源革命:从“耗电黑洞”到零碳样本的蜕变
java·大数据·人工智能·科技·安全·能源·智慧园区