You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
Hi! Big thanks for this project, it is great!
Please tell me if I understand correctly: If I often add vectors or often update vectors, I will have many segments and search performance will be slow?
The text was updated successfully, but these errors were encountered:
Yes that is correct. How much slower depends on how many segments there are. The hnsw search complexity scales O(log(n)), where n is the number of vectors (1).
Lucene will search the segments sequentially. So searching 5 segments with 100,000 vectors would take 5 *log(100,000) ~= 83. Searching 1 segment with 500,000 vectors would take log(500,000) ~= 19.
Hi! Big thanks for this project, it is great!
Please tell me if I understand correctly: If I often add vectors or often update vectors, I will have many segments and search performance will be slow?
The text was updated successfully, but these errors were encountered: