Solr 8.11 における solrconfig.xml の変更

トピック作成者:ks-solruserml-bot (2025/10/24 18:46 投稿)
1
(The bot translated the original post https://lists.apache.org/thread/4v2g1pnbpvn48hhj6ktn3fpczos5j3ct into Japanese and reposted it under Apache License 2.0. The copyright of posted content is held by the original poster.)
現在の solrconfig.xml には以下の設定があります:
<queryResultCache size="512" initialSize="512" autowarmCount="0"/>
<filterCache size="512" initialSize="512" autowarmCount="0"/>
<documentCache size="512" initialSize="512" autowarmCount="0"/>
これを、大規模かつ高頻度のクエリ向けに次のように変更してもよいでしょうか?
<queryResultCache class="solr.LRUCache" size="1000" initialSize="1000" autowarmCount="200"/>
<filterCache class="solr.FastLRUCache" size="4000" initialSize="4000" autowarmCount="500"/>
<documentCache size="1024" initialSize="1024" autowarmCount="0" />
トピックへ返信するには、ログインが必要です。