]
Ryan Emerson resolved ISPN-7662.
--------------------------------
Fix Version/s: 9.0.0.Final
Assignee: Tristan Tarrant
Resolution: Done
Adding cache configuration with specific indexing properties requires
server reload
-----------------------------------------------------------------------------------
Key: ISPN-7662
URL:
https://issues.jboss.org/browse/ISPN-7662
Project: Infinispan
Issue Type: Bug
Components: Server
Affects Versions: 9.0.0.CR3
Reporter: Martin Gencur
Assignee: Tristan Tarrant
Fix For: 9.0.0.Final
Adding the following cache config requires server reload otherwise the indexing strategy
is ignored.
{code}
<local-cache-configuration name="manualIndexingCacheConfig">
<indexing index="LOCAL">
<property
name="default.directory_provider">ram</property>
<property
name="hibernate.search.jmx_enabled">true</property>
<property name="lucene_version">LUCENE_CURRENT</property>
<property
name="hibernate.search.indexing_strategy">manual</property>
</indexing>
</local-cache-configuration>
<local-cache name="manualIndexingCache"
configuration="manualIndexingCacheConfig"/>
{code}