Package io.objectbox.annotation
Annotation Type HnswFlags
-
public @interface HnswFlags
Flags as a part of theHnswIndex
configuration.
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description boolean
debugLogs
Enables debug logs.boolean
debugLogsDetailed
Enables "high volume" debug logs, e.g.boolean
reparationLimitCandidates
If the speed of removing nodes becomes a concern in your use case, you can speed it up by setting this flag.boolean
vectorCacheSimdPaddingOff
Padding for SIMD is enabled by default, which uses more memory but may be faster.
-
-
-
-
reparationLimitCandidates
boolean reparationLimitCandidates
If the speed of removing nodes becomes a concern in your use case, you can speed it up by setting this flag. By default, repairing the graph after node removals creates more connections to improve the graph's quality. The extra costs for this are relatively low (e.g. vs. regular indexing), and thus the default is recommended.- Default:
- false
-
-