Skip to content

Commit 9294647

Browse files
authored
Update README.md
1 parent 5d20ba8 commit 9294647

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,21 @@ Unlike other vector databases or extensions that require complex setup, SQLite-V
4747

4848
---
4949

50+
### 🚀 Instant Vector Search – No Preindexing Required
51+
52+
Unlike other SQLite vector extensions that rely on complex indexing algorithms such as DiskANN, HNSW, or IVF, which often require **preprocessing steps that can take hours or even days**, `sqlite-vector` works out of the box with your existing data. There’s **no need to preindex your vectors**—you can start performing fast, approximate or exact vector searches **immediately**.
53+
54+
This means:
55+
56+
* 🕒 **No waiting time** before your app or service is usable
57+
* 🔄 **Zero-cost updates** – you can add, remove, or modify vectors on the fly without rebuilding any index
58+
***Works directly with BLOB columns** in ordinary SQLite tables – no special schema or virtual table required
59+
* 🌍 **Ideal for edge and mobile use cases**, where preprocessing large datasets is not practical or possible
60+
61+
By eliminating the need for heavyweight indexing, `sqlite-vector` offers a **simpler, faster, and more developer-friendly** approach to embedding vector search in your applications.
62+
63+
---
64+
5065
## 🛠 Supported Vector Types
5166

5267
You can store your vectors as `BLOB` columns in ordinary tables. Supported formats include:

0 commit comments

Comments
 (0)