Skip to content

Commit

Permalink
Typo fielf in Full Text Filtering tutorial (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
superseb authored Nov 8, 2024
1 parent 2967646 commit 497e1f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ You’ll notice this filter works, but if you change the phrase slightly, it won

To make filtering more powerful and flexible, we’ll index the `description` field. This will tokenize the text, allowing for more complex queries such as filtering for phrases like "cave colonies." We use a `word` tokenizer, and only tokens that are between 5 and 20 characters will be indexed.

**Note:** You should always index a fielf before filtering. If you use filtering before you create an index (like in Step 3), Qdrant will search through the entire dataset in an unstructured way. Your search performance will be very slow.
**Note:** You should always index a field before filtering. If you use filtering before you create an index (like in Step 3), Qdrant will search through the entire dataset in an unstructured way. Your search performance will be very slow.

```json withRunButton="true"
PUT /collections/star_charts/index
Expand Down

0 comments on commit 497e1f5

Please sign in to comment.