From 717cc913bb8b520bc2934e288ac9b6ac3c70b4b7 Mon Sep 17 00:00:00 2001 From: Beto Dealmeida Date: Fri, 26 Sep 2025 12:57:44 -0400 Subject: [PATCH] Update feature comparison in README.md Just a suggestion on how to make the presentation better. --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 2aaf3ba..7c2d68e 100644 --- a/README.md +++ b/README.md @@ -15,15 +15,15 @@ ## Why Use SQLite-Vector? -| Feature | SQLite-Vector | Traditional Solutions | -| -------------------------- | ------------- | ------------------------------------------ | -| Works with ordinary tables | ✅ | ❌ (usually require special virtual tables) | -| Requires preindexing | ❌ | ✅ (can take hours for large datasets) | -| Requires external server | ❌ | ✅ (often needs Redis/FAISS/Weaviate/etc.) | -| Memory-efficient | ✅ | ❌ | -| Easy to use SQL | ✅ | ❌ (often complex JOINs, subqueries) | -| Offline/Edge ready | ✅ | ❌ | -| Cross-platform | ✅ | ❌ | +| Feature | SQLite-Vector | Traditional Solutions | +| ---------------------------- | ------------- | ------------------------------------------ | +| Works with ordinary tables | ✅ | ❌ (usually require special virtual tables) | +| Doesn't need preindexing | ✅ | ❌ (can take hours for large datasets) | +| Doesn't need external server | ✅ | ❌ (often needs Redis/FAISS/Weaviate/etc.) | +| Memory-efficient | ✅ | ❌ | +| Easy to use SQL | ✅ | ❌ (often complex JOINs, subqueries) | +| Offline/Edge ready | ✅ | ❌ | +| Cross-platform | ✅ | ❌ | Unlike other vector databases or extensions that require complex setup, SQLite-Vector **just works** with your existing database schema and tools.