-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Add VAMANA vector type to RediSearch #3449
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…amana-vector-type-to-search
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ofekshenawa thank you for contributing this. I can see there are panics that were in the code even before we added this change, but let's make sure we don't panic during the execution of a command. Maybe the arguments were dynamically build, and returning an error should be sufficient way of noting that they are wrong, panicking will stop the whole execution of the application (if not recovered) and we should not do that.
a424291
to
8c00693
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me
* Add VAMANA vector type to redisearch * Change to svs-vamana vector type && remove panics from search module * fix tests * fix tests * fix tests
Implements comprehensive support for the VAMANA vector index algorithm introduced in Redis 8.2+.
Key Changes
Core Implementation : Added FTVamanaOptions struct with full parameter support (distance metrics, vector types, compression, advanced tuning)
Feature Set : Supports L2/COSINE/IP distance metrics, FLOAT16/FLOAT32 vector types, LVQ8 compression, construction window size and graph max degree
Tests: Includes test suite covering VAMANA functionality, distance metrics, compression scenarios, and parameter combinations