0

我一直在挖掘Elastical资源,试图弄清楚在创建索引时如何设置核心类型。具体来说,我需要将一个字段设置为 geo_point 字段。

Mongoosastic 中,我只是在我的模式上设置了 es_type 字段,但我不知道如何在 Elastical 中做同样的事情。

谢谢!

4

1 回答 1

0

看起来我在寻找“putMapping”功能。

elastical.putMapping(index, type, {'type': {'properties': {"coords" : {"type" : "geo_point", "store": "yes"}}}}, function(e,r){});
于 2013-02-05T17:35:46.483 回答