ElasticSearch如何新增字段
Posted Hail Hydra
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ElasticSearch如何新增字段相关的知识,希望对你有一定的参考价值。
/index/type/_mapping post
{
"properties": {
"zy_renwu_pingjia": {
"type": "string",
"index": "not_analyzed"
}
}
}
以上是关于ElasticSearch如何新增字段的主要内容,如果未能解决你的问题,请参考以下文章
ElasticSearch学习问题记录——Invalid shift value in prefixCoded bytes (is encoded value really an INT?)(代码片段
Elasticsearch 分布式搜索引擎 -- 文档操作(新增文档查询文档删除文档修改文档)