We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent83d410e commit7b58352Copy full SHA for 7b58352
README.md
@@ -754,8 +754,6 @@ SELECT query, calls, ROUND((total_plan_time + total_exec_time) / calls) AS avg_t
754
FROM pg_stat_statementsORDER BY total_plan_time+ total_exec_timeDESCLIMIT20;
755
```
756
757
-Note: Replace`total_plan_time + total_exec_time` with`total_time` for Postgres < 13
758
-
759
Monitor recall by comparing results from approximate search with exact search.
760
761
```sql
@@ -824,7 +822,7 @@ You can use [half-precision indexing](#half-precision-indexing) to index up to 4
824
822
825
823
####Can I store vectors with different dimensions in the same column?
826
827
-You can use`vector` as the type (instead of`vector(3)`).
+You can use`vector` as the type (instead of`vector(n)`).
828
829
830
CREATETABLEembeddings (model_idbigint, item_idbigint, embedding vector,PRIMARY KEY (model_id, item_id));