| ▲ | Vector Search in open-source MySQL(villagesql.com) | |
| 3 points by deesix 8 hours ago | 1 comments | ||
| ▲ | deesix 8 hours ago | parent [-] | |
Code to create HNSW index: CREATE TABLE demo_vectors ( id INT PRIMARY KEY, embedding SVECTOR(3) NOT NULL, INDEX idx_embedding (embedding hnsw_l2) USING EXTENDED(hnsw) ) ENGINE=InnoDB; | ||