我在Laravel 5.6中使用Moloquent模型。这是我的收藏记录,如下所示: -
{
"_id" : ObjectId("5afe619dbe0b8d0e5876b16b"),
"name" : "Central Park",
"categories" : [
"4d4b7105d754a06376d81259",
"4bf58dd8d48988d116941735",
"4bf58dd8d48988d119941735",
"4d4b7105d754a06376d81259",
"4bf58dd8d48988d116941735",
"4bf58dd8d48988d119941735",
"4d4b7105d754a06374d81259",
"4bf58dd8d48988d16d941735"
],
"loc" : {
"type" : "Point",
"coordinates" : [
88.4166612820784,
22.5835157504658
]
}
}
我从Laravel控制器运行此查询。
$users = MongoTest::where('loc', 'near', [
'$geometry' => [
'type' => 'Point',
'coordinates' => [
$longitude,
$latitude,
],
],
'$maxDistance' => 10,
])->get();
print_r($users);
我收到此错误: -
error processing query: ns=tkit.testTree: GEONEAR field=loc maxdist=10 isNearSphere=0
Sort: {}
Proj: {}
planner returned error: unable to find index for $geoNear query
我该如何解决这个问题?
答案 0 :(得分:1)
从mongo shell创建索引。查询需要2sphere
index使用$near
或$nearSphere
运算符或geoNear
命令,甚至是$geoNear
聚合管道阶段。
createIndex()
方法会为您执行此操作,因此只需在正确的数据库中命名您的集合:
db.collection.createIndex({ "loc": "2dsphere" })
请注意,实际使用geoNear
命令的任何API确实需要更新到其他提到的查询运算符之一,因为此命令从MongoDB 4.0开始被“弃用”并将被删除。
寻找“最近”的操作应该使用$near
或$nearSphere
,那些想要返回“距离”的操作应该使用$geoNear
管道阶段。