PUT /my_store
{
"mappings" : {
"products" : {
"properties" : {
"productID" : {
"type" : "text",
"index" : "not_analyzed"
}
}
}
}
}
版本:5.4.3 提示:not_analyzed已废弃,只能是true和false,这样的话不分词怎么设置?
{
"mappings" : {
"products" : {
"properties" : {
"productID" : {
"type" : "text",
"index" : "not_analyzed"
}
}
}
}
}
版本:5.4.3 提示:not_analyzed已废弃,只能是true和false,这样的话不分词怎么设置?
2 个回复
laoyang360 - 《一本书讲透Elasticsearch》作者,Elastic认证工程师 [死磕Elasitcsearch]知识星球地址:http://t.cn/RmwM3N9;微信公众号:铭毅天下; 博客:https://elastic.blog.csdn.net
赞同来自: shinehiy 、occultskyrong
5.xstring分为两种类型keyword,text。如果不想分词,用keyword即可。
shinehiy
赞同来自: