Vector search
Why CrateDB for Vector Search?
Common Query Patterns
K-Nearest Neighbors (KNN) Search
SELECT text, _score
FROM word_embeddings
WHERE KNN_MATCH(embedding, [0.3, 0.6, 0.0, 0.9], 3)
ORDER BY _score DESC;Combine with Filters
Compute Similarity Score
Real-World Examples
Semantic Document Search
E-commerce Recommendations
Chat Memory Recall
Further Learning & Resources
Last updated

