我一直在挖掘Elastical源代码,试图找出在创建索引时如何设置Core Type。具体来说,我需要将字段设置为geo_point字段。
在Mongoosastic我只是在我的架构上设置es_type字段,但我无法弄清楚如何在Elastical中进行等效。
谢谢!
答案 0 :(得分:0)
看起来我正在寻找“putMapping”功能。
elastical.putMapping(index, type, {'type': {'properties': {"coords" : {"type" : "geo_point", "store": "yes"}}}}, function(e,r){});