我有一个这样的映射:
'mappings': {
'properties': {
'content': {
'type': 'text',
'fields': {
'length': {
'type': 'token_count',
'analyzer': 'standard',
'store': True
}
}
}
}
}
现在,我要检索文档ID#1的令牌计数。我尝试过:
http localhost:9200/test_idx/_doc/1?_source=content.length
不返回任何内容。
我想知道这样做的正确方法是什么?
谢谢!