diff --git a/solr/solr-ref-guide/modules/deployment-guide/pages/solrcloud-distributed-requests.adoc b/solr/solr-ref-guide/modules/deployment-guide/pages/solrcloud-distributed-requests.adoc index 15d704d7b6c..605183e27e8 100644 --- a/solr/solr-ref-guide/modules/deployment-guide/pages/solrcloud-distributed-requests.adoc +++ b/solr/solr-ref-guide/modules/deployment-guide/pages/solrcloud-distributed-requests.adoc @@ -445,14 +445,10 @@ For example, the following line makes Solr use the `ExactStatsCache` implementat ---- ---- -When `ExactStatsCache`, `ExactSharedStatsCache` or `LRUStatsCache` implementations are enabled in `solrconfig.xml`, distributed calls to fetch global term stats apply to all queries. -For queries that do not utilize distributed IDF for score calculation, for example -[source,xml] ----- -http://localhost:8987/solr/collection1/select?q=*%3A*&wt=json&fq={!terms f=id}id1,id2 ----- -When query param distrib.statsCache is set to false, distributed stats is turned off at query time to reduce the overhead. +=== distrib.statsCache Parameter + +The query param distrib.statsCache defaults to `true`. If set to `false`, distributed calls to fetch global term stats is turned off for this query. This can reduce overhead for queries that do not utilize distributed IDF for score calculation. [source,xml] ----