我们正在使用solroud5.0来索引和查询数据。
我们发现断断续续的查询变得缓慢。通过分析(通过SolrCloud管理面板),我们发现当documentCache变慢时,它的大小变为0。没有驱逐(通过SolrCloud行政小组确认)。documentCache变得精力充沛的原因是什么?
我们在solrconfig.xml中有下面的solrconfig.xml设置。
<documentCache class="solr.FastLRUCache" size="40960" initialSize="40960"
autowarmCount="0" cleanupThread="true"/>documentCache变得精力充沛的原因是什么?
发布于 2015-07-25 10:22:34
SOLR在每次提交后清除缓存,您可能处于升温前状态,这可能是性能延迟的原因。
https://stackoverflow.com/questions/31609916
复制相似问题