附近的人?你zao吗?
前几天收到一个新的需求,需要实现类似“附近的人”的功能:根据自己当前的定位,获取距离范围内的所有任务地点。刚看到这个需求时有点懵逼,第一想到的就是要利用地球的半径公式去计算距离,也就是把地球想成一个球体,去计算球上两点之间的距离。可想而知,这样的方法效率会比较低,每条数据都要来与本人的坐标做计算,太过繁琐。经过大佬的指点,想到了用redis自带的geo来实现此功能。
实战演习
以下是给大家准备的sql脚本
set names utf8mb4; set foreign_key_checks = 0; -- ---------------------------- -- table structure for job_base_info -- ---------------------------- drop table if exists `job_base_info`; create table `job_base_info` ( `job_id` bigint(20) not null auto_increment comment '任务id', `job_name` varchar(50) character set utf8 collate utf8_general_ci not null comment '任务名称', `job_location` varchar(50) character set utf8 collate utf8_general_ci null default '' comment '任务地点位置经纬度-逗号隔开', `job_detail_address` varchar(255) character set utf8 collate utf8_general_ci not null comment '任务详细地点位置', primary key (`job_id`) using btree ) engine = innodb auto_increment = 24 character set = utf8 collate = utf8_general_ci comment = '工作任务详情基础信息表' row_format = dynamic; -- ---------------------------- -- records of job_base_info -- ---------------------------- insert into `job_base_info` values (1, '软件开发', '120.433576,36.139697', '青岛市崂山区海尔路1号'); insert into `job_base_info` values (2, '儿童摄影', '120.420297,36.156589', '山东省青岛市李沧区书院路188号'); insert into `job_base_info` values (3, '清洁家用电器', '120.025706,36.281478', '山东省青岛市胶州市福州支路232号东60米'); insert into `job_base_info` values (4, '辩论学习', '120.505042,36.171247', '松岭路238号中国海洋大学内'); set foreign_key_checks = 1;
废话不多说,让我们来看看具体的实现
(1)我们要在程序启动时,将数据库中的任务数据的坐标信息初始化到redis中(此处暂且忽略任务的增删改查对redis中数据的影响)
@postconstruct public void init(){ //首先要删除该key的所有值 redistemplate.delete("company-task"); list<jobbaseinfo> jobbaseinfolist = jobbaseinfomapper.selectlist(wrappers.emptywrapper()); jobbaseinfolist.stream().foreach(item->{ string joblocation = item.getjoblocation(); if(strutil.isnotempty(joblocation)){ string[] split = joblocation.split(",");comp if(split.length==2){ //point(经度, 纬度) point point = new point(double.parsedouble(split[0]),double.parsedouble(split[1])); //将经纬度数据及其id存到key为“company-task”中 redistemplate.opsforgeo().add("company-task",point,item.getjobid()); } } }); }
(2)查询当前坐标下3km范围内的任务地点(外加根据任务名搜索的联合查询)
@override public list<jobbaseinfo> selectjoblist(jobbaseinfodto jobbaseinfodto) { string joblocation = jobbaseinfodto.getjoblocation(); //距离 double distance = jobbaseinfodto.getdistance(); list<integer> idlist = new arraylist<>(); if(stringutils.isnotnull(joblocation) && stringutils.isnotnull(distance)){ string[] split = joblocation.split(","); if(split.length==2){ //point(经度, 纬度) distance(距离量, 距离单位) circle circle = new circle(new point(double.parsedouble(split[0]),double.parsedouble(split[1])), new distance(distance, metrics.kilometers)); //params: key, circle 获取存储到redis中的distance范围内的所有任务地点数据 georesults radius = redistemplate.opsforgeo().radius("company-task", circle); list<georesult> contentlist = radius.getcontent(); if(contentlist.size()>0){ contentlist.stream().foreach(item->{ redisgeocommands.geolocation content = (redisgeocommands.geolocation) item.getcontent(); idlist.add((integer) content.getname()); }); } } } jobbaseinfodto.setidlist(idlist); return jobbaseinfomapper.selectjoblist(jobbaseinfodto); }
selectjoblist(jobbaseinfodto)
方法的sql如下
<select id="selectjoblist" resulttype="com.itzyq.redislikes.model.entity.jobbaseinfo"> select <include refid="base_column_list"></include> from job_base_info <where> <if test="jobname!=null and jobname!=''"> and job_name like concat("%",#{jobname},"%") </if> <if test="idlist!=null and idlist.size > 0 "> and job_id in <foreach collection="idlist" item="id" open="(" close=")" separator=","> #{id} </foreach> </if> </where> </select>
到这儿我们就已经实现了“附近的人”的功能了,接下来就让我们具体的了解一下redis中的geo都有哪些骚操作吧。gzh回复“psearch”获取源码呦!
geo操作
redis geo 主要用于存储地理位置信息,并对存储的信息进行操作,该功能在 redis 3.2 版本新增,geo 是基于zset的一种扩展数据格式。redis geo 操作方法有:
- geoadd:添加地理位置的坐标。
- geopos:获取地理位置的坐标。
- geodist:计算两个位置之间的距离。
- georadius:根据用户给定的经纬度坐标来获取指定范围内的地理位置集合。
- georadiusbymember:根据储存在位置集合里面的某个地点获取指定范围内的地理位置集合。
- geohash:返回一个或多个位置对象的 geohash 值。
1、geoadd
geoadd 用于存储指定的地理空间位置,可以将一个或多个经度(longitude)、纬度(latitude)、位置名称(member)添加到指定的 key 中。
geoadd 语法格式如下:
geoadd key longitude latitude member [longitude latitude member ...]
以下实例中 key 为 sicily,palermo 和 catania 为位置名称 :
实例
redis> geoadd sicily 13.361389 38.115556 "palermo" 15.087269 37.502669 "catania" (integer) 2 redis>
2、geopos
geopos 用于从给定的 key 里返回所有指定名称(member)的位置(经度和纬度),不存在的返回 nil。
geopos 语法格式如下:
geopos key member [member ...]
实例
redis> geopos sicily palermo catania nonexisting 1) 1) "13.36138933897018433" 2) "38.11555639549629859" 2) 1) "15.08726745843887329" 2) "37.50266842333162032" 3) (nil) redis>
注:也可以使用zrange返回所有的位置元素而不带经纬度信息
redis> zrange sicily 0 -1 1) "palermo" 2) "catania" redis>
3、geodist
geodist 用于返回两个给定位置之间的距离。
geodist 语法格式如下:
geodist key member1 member2 [m|km|ft|mi]
member1 member2 为两个地理位置。
最后一个距离单位参数说明:
- m :米,默认单位。
- km :千米。
- mi :英里。
- ft :英尺。
实例: 计算 palermo 与 catania 之间的距离
redis> geodist sicily palermo catania "166274.1516" redis> geodist sicily palermo catania km "166.2742" redis> geodist sicily palermo catania mi "103.3182" redis> geodist sicily foo bar (nil) redis>
4、georadius、georadiusbymember
georadius 以给定的经纬度为中心, 返回键包含的位置元素当中, 与中心的距离不超过给定最大距离的所有位置元素。
georadiusbymember 和 georadius 命令一样, 都可以找出位于指定范围内的元素, 但是 georadiusbymember 的中心点是由给定的位置元素决定的, 而不是使用经度和纬度来决定中心点。
georadius 与 georadiusbymember 语法格式如下:
georadius key longitude latitude radius m|km|ft|mi [withcoord] [withdist] [withhash] [count count] [asc|desc] [store key] [storedist key] georadiusbymember key member radius m|km|ft|mi [withcoord] [withdist] [withhash] [count count] [asc|desc] [store key] [storedist key]
参数说明:
- m :米,默认单位。
- km :千米。
- mi :英里。
- ft :英尺。
- withdist: 在返回位置元素的同时, 将位置元素与中心之间的距离也一并返回。
- withcoord: 将位置元素的经度和维度也一并返回。
- withhash: 以 52 位有符号整数的形式, 返回位置元素经过原始 geohash 编码的有序集合分值。 这个选项主要用于底层应用或者调试, 实际中的作用并不大。
- count 限定返回的记录数。
- asc: 查找结果根据距离从近到远排序。
- desc: 查找结果根据从远到近排序。
georadius 实例
redis> georadius sicily 15 37 200 km withdist 1) 1) "palermo" 2) "190.4424" 2) 1) "catania" 2) "56.4413" redis> georadius sicily 15 37 200 km withcoord 1) 1) "palermo" 2) 1) "13.36138933897018433" 2) "38.11555639549629859" 2) 1) "catania" 2) 1) "15.08726745843887329" 2) "37.50266842333162032" redis> georadius sicily 15 37 200 km withdist withcoord 1) 1) "palermo" 2) "190.4424" 3) 1) "13.36138933897018433" 2) "38.11555639549629859" 2) 1) "catania" 2) "56.4413" 3) 1) "15.08726745843887329" 2) "37.50266842333162032" redis>
georadiusbymember 实例:
redis> geoadd sicily 13.583333 37.316667 "agrigento" (integer) 1 redis> georadiusbymember sicily agrigento 100 km 1) "agrigento" 2) "palermo" redis>
5、geohash
redis geo 使用 geohash 来保存地理位置的坐标。geohash 用于获取一个或多个位置元素的 geohash 值。
geohash 语法格式如下:
geohash key member [member ...]
实例:
redis> geohash sicily palermo catania 1) "sqc8b49rny0" 2) "sqdtr74hyu0" redis>
geo并没有提供删除指令,但根据其底层是zset实现,我们可以使用zrem对数据进行删除
redis> zrem sicily agrigento "1" redis>
redis geo java api
有了以上geo的操作,我们可以在java中找到对应的api
/** * 将指定的地理空间位置(纬度、经度、名称)添加到指定的key中。 */ //params: key, point(经度, 纬度), 地方名称 long addednum = redistemplate.opsforgeo().add("sicily", new point(13.361389,38.115556), "palermo"); /** * 从key里返回所有给定位置元素的位置(经度和纬度)。 */ //params: key, 地方名称... list<point> points = redistemplate.opsforgeo().position("sicily","palermo","catania"); /** * 返回两个给定位置之间的距离。 */ //params: key, 地方名称1, 地方名称2, 距离单位 distance distance = redistemplate.opsforgeo() .distance("sicily","palermo","catania", redisgeocommands.distanceunit.kilometers); /** * 以给定的经纬度为中心, 返回键包含的位置元素当中, 与中心的距离不超过给定最大距离的所有位置元素,并给出所有位置元素与中心的平均距离。 */ //point(经度, 纬度) distance(距离量, 距离单位) circle circle = new circle(new point(13.361389,38.115556), new distance(200, metrics.kilometers)); redisgeocommands.georadiuscommandargs args = redisgeocommands.georadiuscommandargs.newgeoradiusargs(). //包含距离,包含经纬度,升序前五个 includedistance().includecoordinates().sortascending().limit(5); //params: key, circle, georadiuscommandargs georesults<redisgeocommands.geolocation<string>> results = redistemplate.opsforgeo() .radius("sicily",circle,args); /** * 以给定的城市为中心, 返回键包含的位置元素当中, 与中心的距离不超过给定最大距离的所有位置元素,并给出所有位置元素与中心的平均距离。 */ //params: 距离量, 距离单位 distance distance = new distance(200,metrics.kilometers); redisgeocommands.georadiuscommandargs args = redisgeocommands.georadiuscommandargs.newgeoradiusargs() .includedistance().includecoordinates().sortascending().limit(5); //params: key, 地方名称, circle, georadiuscommandargs georesults<redisgeocommands.geolocation<string>> results = redistemplate.opsforgeo() .radius("sicily","palermo",distance,args); /** * 返回一个或多个位置元素的 geohash 表示 */ //params: key, 地方名称... list<string> results = redistemplate.opsforgeo() .hash("sicily","palermo","catania");
看到这里,“附近的人”功能你一定掌握了吧!如果你觉得这篇文章对你有所帮助,请移步关注gzh“阿q说代码”或者直接联系阿q:qingqing-4132,阿q期待你的到来!