SEARCH-2887 Disable FINGERPRINT and Document Cache by default

This commit is contained in:
Angel Borroy
2021-05-17 09:52:18 +02:00
parent 819fb84757
commit e2c6b90dae

View File

@@ -103,8 +103,9 @@ solr.filterCache.size=256
solr.filterCache.initialSize=128
solr.queryResultCache.size=1024
solr.queryResultCache.initialSize=1024
solr.documentCache.size=1024
solr.documentCache.initialSize=1024
# Document cache is useless, so it can be disabled
solr.documentCache.size=0
solr.documentCache.initialSize=0
solr.queryResultMaxDocsCached=2048
solr.authorityCache.size=128
@@ -155,11 +156,19 @@ solr.deniedCache.autowarmCount=0
solr.readerCache.autowarmCount=0
solr.ownerCache.autowarmCount=0
solr.queryResultCache.autowarmCount=4
solr.documentCache.autowarmCount=512
# Document cache is useless, so it can be disabled
solr.documentCache.autowarmCount=0
solr.queryResultWindowSize=512
# Document Fingerprint
# This can be used to find similar content in general or biased towards containment by using the FINGERPRINT keyword in FTS
# This feature is disabled by default in order to save Solr Core storage space.
alfresco.fingerprint=false
#
# TODO
#