我正在尝试使用Deployd运行地理空间设置。
在这样的事情上
/beam?{"loc": {"$near": [51,-114], "$limit": 10}}
我收到一个错误
{
"message": "can't find special index: 2d for: { loc: { $near: [ 51, -114 ], $limit: 10 } }",
"status": 400
}
AFAIK,我需要把它
foo.ensureIndex({loc:"2d", affiliation:1})
放在某个地方。
但是哪里?我在哪里可以分配显式索引?