]
Gustavo Fernandes updated ISPN-12564:
-------------------------------------
Fix Version/s: 12.0.0.Final
Remove support for property
"infinispan.query.lucene.max-boolean-clauses" from the index config
-----------------------------------------------------------------------------------------------
Key: ISPN-12564
URL:
https://issues.redhat.com/browse/ISPN-12564
Project: Infinispan
Issue Type: Bug
Affects Versions: 12.0.0.CR1
Reporter: Gustavo Fernandes
Priority: Major
Fix For: 12.0.0.Final
The Lucene max Clauses is a JVM level (static config) and affects all caches, so it
doesn't make sense to have:
{code:java}
builder.indexing().enable()
.storage(LOCAL_HEAP)
.addIndexedEntity("sample_bank_account.User")
.addProperty("infinispan.query.lucene.max-boolean-clauses",
"1025");
{code}