用例是计算文本中的单词数。通过使用multifield选项使用token_count数据类型来完成。
"name": {
"type":"text",
"fields":{
"length":{
"type":"token_count",
"analyzer":"standard",
"store":true
}
}
现在此字段在_source字段中不可用。如何将此字段的值带入_source字段。而不是将字段包含在存储的字段中。有什么选择吗?