Class HibernateSearchElasticsearchRuntimeConfigPersistenceUnit.AutomaticIndexingConfig
- java.lang.Object
-
- io.quarkus.hibernate.search.orm.elasticsearch.runtime.HibernateSearchElasticsearchRuntimeConfigPersistenceUnit.AutomaticIndexingConfig
-
- Enclosing class:
- HibernateSearchElasticsearchRuntimeConfigPersistenceUnit
public static class HibernateSearchElasticsearchRuntimeConfigPersistenceUnit.AutomaticIndexingConfig extends Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) boolean
enableDirtyCheck
Whether to check if dirty properties are relevant to indexing before actually reindexing an entity.(package private) HibernateSearchElasticsearchRuntimeConfigPersistenceUnit.AutomaticIndexingSynchronizationConfig
synchronization
Configuration for synchronization with the index when indexing automatically.
-
Constructor Summary
Constructors Constructor Description AutomaticIndexingConfig()
-
-
-
Field Detail
-
synchronization
@ConfigItem HibernateSearchElasticsearchRuntimeConfigPersistenceUnit.AutomaticIndexingSynchronizationConfig synchronization
Configuration for synchronization with the index when indexing automatically.
-
enableDirtyCheck
@ConfigItem(defaultValue="true") boolean enableDirtyCheck
Whether to check if dirty properties are relevant to indexing before actually reindexing an entity.When enabled, re-indexing of an entity is skipped if the only changes are on properties that are not used when indexing.
-
-