Как получить термины по "_termvectors" в случае использования "Помощника ElasticSearch"?
Я использую "Предложение о завершении" ( https://www.elastic.co/guide/en/elasticsearch/reference/current/search-suggesters.html) в указателе ElasticSearch. Я преуспел в отображении индекса и поиске по ключевым словам.
Однако иногда я хотел бы проанализировать проанализированные токены (термины).
Я назвал "_termvectors api" команды ElasticSearch. Но "term_vectors" не был указан в "_termvectors api". ( https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-termvectors.html)
Подскажите пожалуйста, как получить термины от "_termvectors"?
*API:
GET suggest_example/_termvectors/1
{
"fields": ["*"],
"offsets": true,
"payloads": true,
"positions": true,
"term_statistics": true,
"field_statistics": true
}
*Response:
{
"_index" : "suggest_example",
"_type" : "_doc",
"_id" : "1",
"_version" : 1,
"found" : true,
"took" : 1,
"term_vectors" : { }
}
"term_vectors" is none.