文章40 | 阅读 24045 | 点赞0
前面也提到过关于手动创建mapping,接着上一篇关于object类型存储以及mapping的介绍,我们接下来就介绍下如何手动创建mapping
#手动创建mapping
PUT /lib6
{
"settings":{
"number_of_shards" : 3,
"number_of_replicas" : 0
},
"mappings":{
"books":{
"properties":{
"title" :{"type":"text"},
"name" :{"type" :"text" ,"analyzer":"standard"},
"publish_date" :{"type":"date", "index" :false},
"price" :{"type" :"double"},
"number":{"type":"integer"}
}
}
}
}
默认情况下,ElasticSearch自动会为每一个字段建立倒排索引,如果我们不希望被索引,index:false
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/ywl470812087/article/details/104865323
内容来源于网络,如有侵权,请联系作者删除!