Skip to content

Commit 6604be5

Browse files
author
Ben Greenberg
committed
include primary fts index creation instructions in readme
1 parent 2a2b047 commit 6604be5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,14 @@ Now, import the data into the bucket you created earlier:
176176
ls *_with_embedding.json | each { |it| open $it.name | wrap content | insert id $in.content._default.name } | doc upsert
177177
```
178178
179+
While, in this workshop we are focused on creating a *vector search index*, you can also create a primary search index to enable full-text search on the data:
180+
181+
```bash
182+
query "create primary index on name_of_your_bucket._default._default"
183+
```
184+
185+
Make sure to replace the `name_of_your_bucket` with the name of your bucket you created.
186+
179187
Once this is done, you can perform a sanity check to ensure the documents were inserted by running a query to select just one:
180188
181189
```bash

0 commit comments

Comments
 (0)