From a6e8f36415c12dd7b0929c751d5ec0eb19d9edf6 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sun, 12 Mar 2023 13:15:47 -0700 Subject: [PATCH] Updated readme [skip ci] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 13aca2c..1bcf8f7 100644 --- a/README.md +++ b/README.md @@ -181,7 +181,7 @@ To speed up queries with an index, increase the number of inverted lists (at the CREATE INDEX ON items USING ivfflat (embedding vector_l2_ops) WITH (lists = 1000); ``` -Use `EXPLAIN ANALYZE` to debug performance +Use `EXPLAIN ANALYZE` to debug performance. ```sql EXPLAIN ANALYZE SELECT * FROM items ORDER BY embedding <-> '[3,1,2]' LIMIT 1;