Interface HibernateSearchElasticsearchRuntimeConfigPersistenceUnit.AutomaticIndexingConfig
-
- Enclosing interface:
- HibernateSearchElasticsearchRuntimeConfigPersistenceUnit
public static interface HibernateSearchElasticsearchRuntimeConfigPersistenceUnit.AutomaticIndexingConfig
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
enableDirtyCheck()
Whether to check if dirty properties are relevant to indexing before actually reindexing an entity.HibernateSearchElasticsearchRuntimeConfigPersistenceUnit.AutomaticIndexingSynchronizationConfig
synchronization()
Configuration for synchronization with the index when indexing automatically.
-
-
-
Method Detail
-
synchronization
HibernateSearchElasticsearchRuntimeConfigPersistenceUnit.AutomaticIndexingSynchronizationConfig synchronization()
Configuration for synchronization with the index when indexing automatically.
-
enableDirtyCheck
@WithDefault("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.
-
-