Redis は地理的位置情報 (GEO) 機能を提供しており、近くの人々やシェイクなどの機能を実行できます。まずはGEOの関連APIを紹介します。
#GEO API
住所位置情報の追加
# #geoadd キー経度緯度メンバー [経度緯度メンバー ...]
127.0.0.1:6379> geoadd location 117.230279 31.81676 a 117.229704 31.824676 b (integer) 2 127.0.0.1:6379> geoadd location 117.300419 31.696095 c (integer) 1 127.0.0.1:6379> geoadd location 117.192909 31.732465 d (integer) 1 127.0.0.1:6379> geoadd location 117.189604 31.838297 e (integer) 1
2 つの場所間の距離を取得します geodist key member1 member2 [単位]
単位には 4 つの単位があります
#'m' => メートル#主にメートルとキロメートルを使用します。
127.0.0.1:6379> GEODIST location a b km "0.8821"
Little A と Little B の間には 0.88 キロメートルあることがわかります
もう一度見てみましょうLittle C と Little E の間の距離
127.0.0.1:6379> GEODIST location c e km "18.9728"
両者の差はほぼ 19 キロメートルです。
住所位置情報の取得
geopos キー メンバー [メンバー ...]
come Xiao D の住所の経度と緯度の情報を確認します127.0.0.1:6379> geopos location d
1) 1) "117.19290822744369507"
2) "31.73246441933707018"
指定された位置範囲内の地理情報位置のコレクションを取得します
georadius キー経度緯度 radiusm km|ft|mi [withcoord] [withdist] [withhash] [COUNT count] [asc|desc] [store key] [storedist key] georadiusbymember キー メンバー radiusm km|ft|mi [withcoord] [withdist ] [ withhash] [COUNT count] [asc|desc] [store key] [storedist key]
これら 2 つのコマンドは、他のコマンドより少し複雑です。これら 2 つのコマンドを一緒に見てみましょう。 これら 2 つのコマンドの機能は基本的に似ていますが、主な違いは、最初のコマンドは特定の経度と緯度を与えるのに対し、2 番目のコマンドはメンバー名のみを与えることです。たとえば、メンバーと合肥の大樹山の間の距離を知りたいのですが、大樹山の経度と緯度の情報は redis に保存されていないため、最初のコマンドを使用して大樹山の経度と緯度を入力する必要があります。別の例として、Little A の座標から他のメンバーの距離を決定するには、2 番目のコマンドを使用してメンバー Little A を直接入力します。
radiusm とそれに続く単位は必須の情報で、検索対象の半径距離を指定します。合肥大樹山の座標は117.175571,31.846746# 查看离大蜀山10km的成员有哪些
127.0.0.1:6379> GEORADIUS location 117.175571 31.846746 10 km
1) "e"
2) "a"
3) "b"
127.0.0.1:6379> GEORADIUS location 117.175571 31.846746 10 km withcoord 1) 1) "e" 2) 1) "117.18960374593734741" 2) "31.83829663190295634" 2) 1) "a" 2) 1) "117.23027676343917847" 2) "31.81675910621205361" 3) 1) "b" 2) 1) "117.22970277070999146" 2) "31.8246750403926697"
メンバーに加えて、メンバーの位置情報ページも含まれていることがわかります。
withdist: 返される結果には、中心ノードの位置からの距離が含まれます127.0.0.1:6379> GEORADIUS location 117.175571 31.846746 10 km withcoord withdist 1) 1) "e" 2) "1.6252" 3) 1) "117.18960374593734741" 2) "31.83829663190295634" 2) 1) "a" 2) "6.1522" 3) 1) "117.23027676343917847" 2) "31.81675910621205361" 3) 1) "b" 2) "5.6737" 3) 1) "117.22970277070999146" 2) "31.8246750403926697"
小さな E は大樹山から 1.62 キロメートル離れており、小さな A であることがわかります。大樹山からは 1.62 キロメートル、蜀山からは 6.15 キロメートル、リトル B は蜀山から 5.67 キロメートル離れています。
withhash: このコマンドは無視しても問題なく、基本的には使用しませんCOUNT count: 返される結果の数を指定します。
asc|desc: 返される結果は、中心ノードからの距離に応じて昇順または降順になります。
storedist key: 返された結果の中心ノードから指定されたキーまでの距離を保存します。
# 获取离大蜀山100km内范围的成员,按距离的升序,只需给出最近的4个成员即可 127.0.0.1:6379> GEORADIUS location 117.175571 31.846746 100 km withdist count 4 asc 1) 1) "e" 2) "1.6252" 2) 1) "b" 2) "5.6737" 3) 1) "a" 2) "6.1522" 4) 1) "d" 2) "12.8164"
実践的な戦闘
上記の知識を導入した後、php と redis を組み合わせて、人を見つけるためのシェイクを完了できます。近くの機能。まずはメンバーの位置情報を保存します。 伪代码如下: 然后,获取附近的人的信息 使用redis可以大大方便开发人员,丰富的API可以完成各种各样的需求,Redis的使用已经成为程序员必备的技能了。 以上がRedis を使用して WeChat シェイク機能を完了するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。function addLocation ($key,$member, $lng, $lat)
{
$redis->geoadd($key, $lng, $lat, $member);
}
function near (
$key,
$member,
$radius,
$unit = 'km',
$count = 0,
$withDist = false,
$withcoord = false,
$orderby = 'ASC'
)
{
$redis = new Redis();
$redis->connect('localhost', 6379);
$options = [$orderby];
if ($count > 0) {
$options['count'] = $count;
}
if ($withDist) {
$options[] = 'WITHDIST';
}
if ($withcoord) {
$options[] = 'WITHCOORD';
}
$result = $redis->geoRadiusByMember($key, $member, $radius, $unit, $options);
return $result;
}