add link to basic and indexing

This commit is contained in:
Lei Xu
2023-04-19 14:53:45 -07:00
parent de6bfab124
commit 23d4e3561f

View File

@@ -29,6 +29,10 @@ table = db.create_table("pd_table", data=data)
table.create_index(num_partitions=256, num_sub_vectors=96)
```
You will find detailed instructions of creating dataset and index in [Basic Operations](basic.md) and [Indexing](indexing.md)
sections.
We can now perform similarity searches via `LanceDB`.
```py