标签: elasticsearch
我正在执行一个巨大的ElasticSearch查询。它由should上由bool加入的一些“子查询”组成。我需要知道哪些结果项与查询的should匹配。
should
bool
我排序然后限制查询的大小。我无法将查询拆分为多个查询然后进行msearch,因为将返回大量数据,以便稍后对整个结果集进行排序并再次截断为大小。
有没有办法标记与查询的一部分匹配的结果,以便我以后可以确定哪些部分会导致这些结果?
答案 0 :(得分:2)
是的,请查看Named Queries。
Named Queries
http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-request-named-queries-and-filters.html