On this page本页内容
geoSearch
¶Deprecation
MongoDB 4.4 deprecates the geoHaystack index and the MongoDB 4.4不支持geoHaystack索引和geoSearch
command. geoSearch
命令。Use a 2d index with 使用带有$geoNear
or $geoWithin
instead.$geoNear
或$geoWithin
的二维索引。
The geoSearch
command provides an interface to MongoDB’s haystack index functionality. geoSearch
命令为MongoDB的haystack索引功能提供了一个接口。These indexes are useful for returning results based on location coordinates after collecting results based on some other query (i.e. a “haystack.”)这些索引在基于其他查询(即“干草堆”)收集结果后,可用于基于位置坐标返回结果
The geoSearch
command accepts a document that contains the following fields.geoSearch
命令接受包含以下字段的文档。
geoSearch |
string | |
search |
document | |
near |
array | |
maxDistance |
number | |
limit |
number | |
readConcern |
document |
|
comment |
any |
A comment can be any valid BSON type (string, integer, object, array, etc).
|
Unless specified otherwise, the 除非另有规定,否则geoSearch
command limits results to 50 documents.geoSearch
命令将结果限制为50个文档。
geoSearch
can be used inside multi-document transactions.geoSearch
可用于多文档事务。
Important
In most cases, multi-document transaction incurs a greater performance cost over single document writes, and the availability of multi-document transactions should not be a replacement for effective schema design. 在大多数情况下,与单文档写入相比,多文档事务会带来更大的性能成本,而多文档事务的可用性不应取代有效的模式设计。For many scenarios, the denormalized data model (embedded documents and arrays) will continue to be optimal for your data and use cases. That is, for many scenarios, modeling your data appropriately will minimize the need for multi-document transactions.也就是说,对于许多场景,适当地建模数据将最大限度地减少对多文档事务的需求。
For additional transactions usage considerations (such as runtime limit and oplog size limit), see also Production Considerations.
Consider the following example:考虑下面的例子:
The above command returns all documents with a type
of restaurant
having a maximum distance of 6 units from the coordinates [ -73.9667, 40.78 ]
in the collection places
up to a maximum of 30 results.
To override the default read concern level of "local"
, use the readConcern
option.
The following operation on a replica set specifies a Read Concern of "majority"
to read the most recent copy of the data confirmed as having been written to a majority of the nodes.
Note
"majority"
, replica sets must use WiredTiger storage engine.
You can disable read concern "majority"
for a deployment with a three-member primary-secondary-arbiter (PSA) architecture;
however, this has implications for change streams (in MongoDB 4.0 and earlier only) and transactions on sharded clusters. For more information, see Disable Read Concern Majority.
To ensure that a single thread can read its own writes, use 要确保单个线程可以读取自己的写入,请对副本集的主线程使用"majority"
read concern and "majority"
write concern against the primary of the replica set."majority"
读取关注点和"majority"
写入关注点。