I'm running the same query back to back on an index and the score and results come back different when I look at explain:
{
“value”: 22037,
“description”: “n, number of documents containing term”,
“details”: []
},
{
“value”: 23498,
“description”: “N, total number of documents with field”,
“details”: []
}
vs:
“details”: [
{
“value”: 22395,
“description”: “n, number of documents containing term”,
“details”: []
},
{
“value”: 23744,
“description”: “N, total number of documents with field”,
“details”: []
}
What should these represent values? I have ~81k documents containing that field. I tried using an API refresh and the results are still returning mixed.
How can I maintain consistency with this, shouldn't it be caching these to some extent, or is that potentially a part of the problem?