elasticsearch

[Elasticsearch Reference 2x] Map

2017-02-12  本文已影响10人  king_wang

本文是对官方文档的翻译,学习elasticsearch之用,错误之处欢迎指出。

String datatype

string类型用于保存字符串。它有分为2个子类:

下面是一个例子

PUT my_index
{
  "mappings": {
    "my_type": {
      "properties": {
        "full_name": { 
          "type":  "string"
        },
        "status": {
          "type":  "string", 
          "index": "not_analyzed"
        }
      }
    }
  }
}
上一篇下一篇

猜你喜欢

热点阅读