From 287af9c2fdc5e0eae6f7cfc6d963482f85d2f373 Mon Sep 17 00:00:00 2001 From: MikeGarciaAGM Date: Sun, 31 May 2026 08:58:59 -0500 Subject: [PATCH] feat(blog): add post from issue #261 --- posts.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/posts.json b/posts.json index 9ad7a6f..883f016 100644 --- a/posts.json +++ b/posts.json @@ -571,5 +571,18 @@ "tags": [], "date": "2026-04-04", "order": 52 + }, + { + "id": "6739457d", + "title": "Vector DBs comparaison — pgvector, Qdrant, Milvus, Weaviate", + "url": "https://github.com/khalilbenaz/khalilbenaz.github.io/issues/261", + "excerpt": "## Le marché vector DB - **pgvector** : extension Postgres, simple. - **Qdrant** : OSS, Rust, performant. - **Weaviate** : OSS, hybrid search natif. - **Milvus** : OSS, scale massif. - **Pinecone** : managed, cher. - **Chroma** : dev/prototypes. ## pgvector — démarrer ```sql CREATE EXTENSION vector; CREATE TABLE docs ( id serial primary key, embedding vector(1536), content text ); CREATE INDEX ON docs USING hnsw (emb", + "tags": [ + "BLOG", + "AI", + "POSTGRES" + ], + "date": "2026-05-23", + "order": 53 } -] \ No newline at end of file +]