文章目录世界上并没有完美的程序,但是我们并不因此而沮丧,因为写程序就是一个不断追求完美的过程。
-侯氏工坊
索引 实体 高亮 参考 重要参考
索引PUT /index_highlight
{
"mappings": {
"properties": {
"article": {
"properties": {
"title": {
"type": "text",
"index_options": "offsets"
},
"content": {
"type": "text",
"term_vector": "with_positions_offsets"
}
}
}
}
}
}
POST /index_highlight/_bulk
{"create": {}}
{"article": {"title": "this is a dog", "content": "hello good me hello good me text 


