Qdrant - Vector Database
A collection is a named set of points (vectors with a payload) among which you can search. Vectors within the same collection must have the same dimensionality and be compared by a single metric.
One of the significant features of Qdrant is the ability to store additional information along with vectors. This information is called payload in Qdrant terminology. Qdrant allows you to store any information that can be represented using JSON.
{
"key": "project",
"match": {
"any": ["aaa", "bbb"]
}
}
{
"key": "description",
"match": {
"text": "good cheap"
}
}
- インデックスを作らない場合は部分文字列を中に含むかのサーチになる
Qdrant currently only uses HNSW as a vector index. HNSW (Hierarchical Navigable Small World Graph) is a graph-based indexing algorithm.
...