Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 MongoDB 的新手,想创建一个数据库,其中存储在集合中的位置数据(经纬度)。我计划创建 GeoJSON 对象来存储这些数据。我想知道是否可以在此集合上创建 2 个索引,其中一个是 2Dsphere 索引,另一个索引可以是任何其他值,例如在同一集合中唯一的 IP 地址?如果这是可能的,我该如何创建这些索引?
这应该有效:
db.position.ensureIndex({"geoField.coordinates":"2dsphere","ipaddress":1})
看看这篇文章
我希望它有帮助