[
https://issues.redhat.com/browse/ISPN-11797?page=com.atlassian.jira.plugi...
]
Gustavo Fernandes updated ISPN-11797:
-------------------------------------
Summary: Introduce strong typed indexing configuration (was: Introduce strong typed
indexing configuration:)
Introduce strong typed indexing configuration
---------------------------------------------
Key: ISPN-11797
URL:
https://issues.redhat.com/browse/ISPN-11797
Project: Infinispan
Issue Type: Enhancement
Components: Embedded Querying, Remote Querying
Affects Versions: 11.0.0.Dev05
Reporter: Gustavo Fernandes
Assignee: Gustavo Fernandes
Priority: Major
Labels: ispn-query11
Fix For: 11.0.0.Final
{code:xml}
<!-- Minimal -->
<indexing>
<indexed-entities>
<indexed-entity>org.infinispan.query.test.Person</indexed-entity>
</indexed-entities>
</indexing>
{code}
{code:xml}
<!-- Medium -->
<indexing storage="file" path="${server.data}/index">
<indexed-entities>
<indexed-entity>org.infinispan.query.test.Person</indexed-entity>
</indexed-entities>
</indexing>
{code}
{code:xml}
<indexing storage="heap">
<indexed-entities>
<indexed-entity>org.infinispan.query.test.Person</indexed-entity>
</indexed-entities>
</indexing>
{code}
{code:xml}
<!-- Maximal -->
<indexing storage="file" path="${server.data}/index">
<index-reader refresh-interval="10s"/>
<!-- Check SYNC behavior Hsearch 6 -->
<index-writer mode="async" commit-internal="10s"/>
<indexed-entities>
<indexed-entity>org.infinispan.query.test.Person</indexed-entity>
</indexed-entities>
<properties>
<property name="default.indexwriter.merge_factor">30</property>
</properties>
</indexing>
{code}
--
This message was sent by Atlassian Jira
(v7.13.8#713008)