qdrant常见命令

1、查看有哪些结合
curl -X GET http://localhost:6333/collections
2、搜索指定key/value的向量库值
curl -X POST "http://localhost:6333/collections/df_resource/points/scroll" \
-H 'Content-Type: application/json' \
-d '{
"limit": 10,
"filter": {
"must": [
{
"key": "source_id",
"match": {
"value": 1746082732275171329
}
}
]
}
}'
3、
curl -X POST "http://localhost:6333/collections/df_resource/points/scroll" \
-H 'Content-Type: application/json' \
-d '{
"limit": 10,
"filter": {
"must": [
{
"key": "source_type",
"match": {
"value": "answer"
}
}
]
}
}'

posted @ 2025-06-25 14:55  zjb480  阅读(29)  评论(0)    收藏  举报