gpt4 book ai didi

elasticsearch - 检查elasticsearch查询结果是否来自缓存?

转载 作者:行者123 更新时间:2023-12-02 22:12:33 24 4
gpt4 key购买 nike

我需要比较 Elasticsearch 索引的 2 个不同索引(具有不同分片数的相同数据),为此我使用了一些慢速搜索查询并点击了这些索引,但我怀疑因为一个索引正在获取实时流量,因此我的查询结果可能来自缓存。

有什么方法可以弄清楚,结果来自缓存还是我们可以指定不从缓存中获取结果的任何参数?

最佳答案

By default, the requests cache will only cache the results of search requests where size=0, so it will not cache hits, but it will cache hits.total, aggregations, and suggestions.


request_cache查询字符串参数可用于 启用或禁用 基于每个请求缓存。如果设置,它将覆盖索引级别设置:
GET /my_index/_search?request_cache=true
{
"size": 0,
"aggs": {
"popular_colors": {
"terms": {
"field": "colors"
}
}
}
}

查看更多: https://www.elastic.co/guide/en/elasticsearch/reference/current/shard-request-cache.html#_enabling_and_disabling_caching_per_request

关于elasticsearch - 检查elasticsearch查询结果是否来自缓存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58164515/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com