qdrant
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.

ID64PUT
UUID
IDPUT
ID


"Match Any"
{
"key": "project",
"match": {
"any": ["aaa", "bbb"]
}
}
{
"key": "description",
"match": {
"text": "good cheap"
}
}

Vector Storage: In-memmory / memmap
Payload Storage: InMemory / OnDisk
1GB RAMScrapboxJSON32MB
1000

>Qdrant currently only uses HNSW as a vector index. HNSW (Hierarchical Navigable Small World Graph) is a graph-based indexing algorithm.

...