Replies: 2 comments 1 reply
-
Hello, could you please provide more details about your specific use case? Are you utilizing vector search within an Online Analytical Processing (OLAP) scenario? |
Beta Was this translation helpful? Give feedback.
1 reply
-
Hi, I'd like to share my thoughts on this feature:
And still thanks for your feedback! Making real world use cases easier and faster is always our target! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Sometimes you don't want to find the nearest 1000 vectors to a single query vector. Instead, you look for e.g. the closest vector for 1000 different query vectors.
Currently, this requires looping over those 1000 vectors and making 1000 network requests unless I am mistaken...
This can be done a lot more efficiently if batch searches are supported.
For some indices (at least flat), this can also be computationally more efficient: one matrix-matrix multiplication compared to 1000 matrix-vector multiplications (for dot product).
Batching vector searches is supported in some vector databases like typesense or qdrant (maybe called multi search etc.)
Hope you'd like the feature as well! In any case, thanks for building this awesome software :-)
Beta Was this translation helpful? Give feedback.
All reactions