0
對不起,如果我的問題是微不足道的,因爲我不熟悉ES。POST _cache/clear上真的發生了什麼?
我應該如何解釋query_cache
的值如果我在stats之間調用clear cache?
// GET _cluster/stats
{
...
"indices": {
...
"query_cache": {
"memory_size_in_bytes": 229449664,
"total_count": 19146885372L
"hit_count": 18430071,
"miss_count": 19128455301L,
"cache_size": 4101,
"cache_count": 126089,
"evictions": 121988
}
...
}
...
}
// POST _cache/clear
// GET _cluster/stats
{
...
"indices": {
...
"query_cache": {
"memory_size_in_bytes": 0,
"total_count": 19146885372L
"hit_count": 18430071,
"miss_count": 19128455301L,
"cache_size": 0,
"cache_count": 126089,
"evictions": 121988
}
...
}
...
}
正如你可以看到memory_size_in_bytes
和cache_size
已經歸零。那是什麼意思?爲什麼cache_count
尚未更改?
非常感謝 –