mirror of https://github.com/apache/lucene.git
SOLR-12099: Remove reopenReaders attribute from 'IndexConfig in SolrConfig' page in ref guide
This commit is contained in:
parent
5dfba25e34
commit
759b0d092f
|
@ -441,6 +441,8 @@ Other Changes
|
|||
* SOLR-12078: Fixed reproducable Failure in TestReplicationHandler.doTestIndexFetchOnMasterRestart that happened
|
||||
due to using stale http connections. (Gus Heck, shalin)
|
||||
|
||||
* SOLR-12099: Remove reopenReaders attribute from 'IndexConfig in SolrConfig' page in ref guide. (shalin)
|
||||
|
||||
================== 7.2.1 ==================
|
||||
|
||||
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.
|
||||
|
|
|
@ -176,8 +176,6 @@ The maximum time to wait for a write lock on an IndexWriter. The default is 1000
|
|||
|
||||
There are a few other parameters that may be important to configure for your implementation. These settings affect how or when updates are made to an index.
|
||||
|
||||
`reopenReaders`:: Controls if IndexReaders will be re-opened, instead of closed and then opened, which is often less efficient. The default is true.
|
||||
|
||||
`deletionPolicy`:: Controls how commits are retained in case of rollback. The default is `SolrDeletionPolicy`, which has sub-parameters for the maximum number of commits to keep (`maxCommitsToKeep`), the maximum number of optimized commits to keep (`maxOptimizedCommitsToKeep`), and the maximum age of any commit to keep (`maxCommitAge`), which supports `DateMathParser` syntax.
|
||||
|
||||
`infoStream`:: The InfoStream setting instructs the underlying Lucene classes to write detailed debug information from the indexing process as Solr log messages.
|
||||
|
@ -185,7 +183,6 @@ There are a few other parameters that may be important to configure for your imp
|
|||
|
||||
[source,xml]
|
||||
----
|
||||
<reopenReaders>true</reopenReaders>
|
||||
<deletionPolicy class="solr.SolrDeletionPolicy">
|
||||
<str name="maxCommitsToKeep">1</str>
|
||||
<str name="maxOptimizedCommitsToKeep">0</str>
|
||||
|
|
Loading…
Reference in New Issue