From 5b12ae8225f27bef35df232ea53e2a1f67e4b156 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Thu, 16 Nov 2023 18:53:48 -0800 Subject: [PATCH] Added note about ef_construction [skip ci] --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index bca3de8..694e215 100644 --- a/README.md +++ b/README.md @@ -269,6 +269,8 @@ Specify HNSW parameters CREATE INDEX ON items USING hnsw (embedding vector_l2_ops) WITH (m = 16, ef_construction = 64); ``` +A higher value of `ef_construction` provides better recall at the cost of index build time / insert speed. + ### Query Options Specify the size of the dynamic candidate list for search (40 by default)