From 497e1f5a3cb74e48989c7421c283f531e5839b18 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Steenis Date: Fri, 8 Nov 2024 10:03:27 +0100 Subject: [PATCH] Typo fielf in Full Text Filtering tutorial (#256) --- .../InteractiveTutorial/MdxPages/FilteringFullText.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/InteractiveTutorial/MdxPages/FilteringFullText.mdx b/src/components/InteractiveTutorial/MdxPages/FilteringFullText.mdx index eaf211ab..7fa35551 100644 --- a/src/components/InteractiveTutorial/MdxPages/FilteringFullText.mdx +++ b/src/components/InteractiveTutorial/MdxPages/FilteringFullText.mdx @@ -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