主要內(nèi)容:基于completion suggest實(shí)現(xiàn)搜索提示
completion傅事,es會構(gòu)建用于進(jìn)行前綴搜索的一種特殊的數(shù)據(jù)結(jié)構(gòu)茎辐,而且會全部放在內(nèi)存中,所以auto completion進(jìn)行的前綴搜索提示掂恕,性能是非常高的
PUT /news_website
{
"mappings": {
"properties": {
"title": {
"type": "text",
"analyzer": "ik_max_word",
"fields": {
"suggest": {
"type": "completion",
"analyzer": "ik_max_word"
}
}
},
"content": {
"type": "text",
"analyzer": "ik_max_word"
}
}
}
}
## 插入數(shù)據(jù)
PUT /news_website/_doc/1
{
"title": "大話西游電影",
"content": "大話西游的電影時隔20年即將在2017年4月重映"
}
PUT /news_website/_doc/2
{
"title": "大話西游小說",
"content": "某知名網(wǎng)絡(luò)小說作家已經(jīng)完成了大話西游同名小說的出版"
}
PUT /news_website/_doc/3
{
"title": "大話西游手游",
"content": "網(wǎng)易游戲近日出品了大話西游經(jīng)典IP的手游拖陆,正在火爆內(nèi)測中"
}
開始搜索:
GET /news_website/_search
{
"suggest": {
"my-suggest" : {
"prefix" : "大話西游",
"completion" : {
"field" : "title.suggest"
}
}
}
}