Files
lancedb/docs/src/js/interfaces/FtsOptions.md
BubbleCal 32fdcf97db feat!: upgrade lance to 0.19.1 (#1762)
BREAKING CHANGE: default tokenizer no longer does stemming or stop-word
removal. Users should explicitly turn that option on in the future.

- upgrade lance to 0.19.1
- update the FTS docs
- update the FTS API

Upstream change notes:
https://github.com/lancedb/lance/releases/tag/v0.19.1

---------

Signed-off-by: BubbleCal <bubble-cal@outlook.com>
Co-authored-by: Will Jones <willjones127@gmail.com>
2024-10-29 09:03:52 -07:00

534 B

@lancedb/lancedbDocs


@lancedb/lancedb / FtsOptions

Interface: FtsOptions

Options to create an FTS index

Properties

withPosition?

optional withPosition: boolean

Whether to store the positions of the term in the document.

If this is true then the index will store the positions of the term in the document. This allows phrase queries to be run. But it also increases the size of the index, and the time to build the index.

The default value is true.