Fixed
Details
Assignee
Alexis CUCUMELAlexis CUCUMELReporter
Yoann RodièreYoann RodièreComponents
Sprint
NoneFix versions
Priority
Major
Details
Details
Assignee
Alexis CUCUMEL
Alexis CUCUMELReporter
Yoann Rodière
Yoann RodièreComponents
Sprint
None
Fix versions
Priority
Created March 3, 2020 at 11:59 AM
Updated March 31, 2020 at 11:52 AM
Resolved March 5, 2020 at 4:03 PM
Property keys for backends and indexes are a bit awkward to use right now, because they require concatenating strings: the "hibernate.search." prefix, the backend name, the radical.
It would be nice to expose a tool to build property keys more easily.
For example:
// hibernate.search.backends.myBackendName.version BackendSettings.backendKey( "myBackendName", ElasticsearchBackendSettings.VERSION ) // hibernate.search.backends.myBackendName.index_defaults.lifecycle.strategy IndexSettings.indexDefaultsKey( "myBackendName", ElasticsearchIndexSettings.LIFECYCLE_STRATEGY ) // hibernate.search.backends.myBackendName.indexes.myIndexName.lifecycle.strategy IndexSettings.indexKey( "myBackendName", "myIndexName", ElasticsearchIndexSettings.LIFECYCLE_STRATEGY )