|
|
|
|
|
by woshiwan
994 days ago
|
|
Thanks for your feedback. We should have emphasized that we are benchmarking Qdrant in local mode. Based on our analysis of the local mode, Qdrant persists the index in this manner: at the directory where qdrant persists index /data/workspace/vector-benchmark/trainQDRANTIndex > du -sh storage.sqlite 2.0G storage.sqlite -------------------------------------- > sqlite3 storage.sqlite -------------------------------------- > sqlite> PRAGMA table_info(points); 0|id|TEXT|0||1 1|point|BLOB|0||0 -------------------------------------- > sqlite> select count(*) from points; 1000000 -------------------------------------- > sqlite> select * from points limit 1; gARLAS4=|��, -------------------------------------- We have updated the post to clarify that Qdrant is being evaluated in local mode. |
|