mirror of
https://github.com/lancedb/lancedb.git
synced 2026-09-04 12:38:38 +00:00
06b53c97d6
## Summary - add table-level FTS query tokenization returning token text and position - use the native index tokenizer for local tables and remote index metadata for remote tables - expose sync and async Python table wrappers with focused coverage
30 lines
400 B
Markdown
30 lines
400 B
Markdown
[**@lancedb/lancedb**](../README.md) • **Docs**
|
|
|
|
***
|
|
|
|
[@lancedb/lancedb](../globals.md) / FtsToken
|
|
|
|
# Interface: FtsToken
|
|
|
|
Token produced by the tokenizer configured on a full-text search index.
|
|
|
|
## Properties
|
|
|
|
### position
|
|
|
|
```ts
|
|
position: number;
|
|
```
|
|
|
|
Token position used by full-text query matching.
|
|
|
|
***
|
|
|
|
### text
|
|
|
|
```ts
|
|
text: string;
|
|
```
|
|
|
|
Token text after tokenizer filters have been applied.
|