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和筛选半径取出符合条件的数据

相关推荐
零雲4 分钟前
java面试:有了解过RocketMq架构么?详细讲解一下
java·面试·java-rocketmq
Deamon Tree16 分钟前
HBase 核心架构和增删改查
java·hbase
冴羽29 分钟前
今日苹果 App Store 前端源码泄露,赶紧 fork 一份看看
前端·javascript·typescript
蒜香拿铁31 分钟前
Angular【router路由】
前端·javascript·angular.js
卡卡酷卡BUG36 分钟前
Java 后端面试干货:四大核心模块高频考点深度解析
java·开发语言·面试
Yolo566Q39 分钟前
OpenLCA生命周期评估模型构建与分析
java·开发语言·人工智能
brzhang1 小时前
读懂 MiniMax Agent 的设计逻辑,然后我复刻了一个MiniMax Agent
前端·后端·架构
西洼工作室1 小时前
高效管理搜索历史:Vue持久化实践
前端·javascript·vue.js
睡前要喝豆奶粉1 小时前
在.NET Core Web Api中使用redis
redis·c#·.netcore
lang201509281 小时前
Spring Boot日志配置完全指南
java·spring boot·单元测试