mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-03 18:32:55 +00:00
535 B
535 B
@lancedb/lancedb • Docs
@lancedb/lancedb / Occur
Enumeration: Occur
Enum representing the occurrence of terms in full-text queries.
Must: The term must be present in the document.Should: The term should contribute to the document score, but is not required.MustNot: The term must not be present in the document.
Enumeration Members
Must
Must: "MUST";
MustNot
MustNot: "MUST_NOT";
Should
Should: "SHOULD";