Frequently Asked Questions
Frequently asked questions about LIFTI
This FAQ is a work in progress - as questions are asked, they will be added here for future reference.
General
Is LIFTI thread safe?
Yes, this is managed by two mechanisms:
- Single writer: Locking is enforced so that there can only be one writer at any one time to the index.
- Snapshots: Whenever changes are committed to the index, a read-only snapshot is taken. Queries are executed against the snapshots, so any modifications that occur during the processing of any given query will not affect them. This means that read operations are lock-free.
Serializaton
Can I automatically serialize an index when it changes?
Yes, you need to add a hook to FullTextIndexBuilder<TKey>.WithIndexModificationAction
. There’s an example here.
Last modified February 6, 2022: Fixed broken links (d98d0b3)