We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Index_UpdateVector
The function will have 3 return values.
Old_id
vector
The function will be used by RediSearch when a document gets updated in order to avoid deletion and addition of a vector which are costly.
Suggestion for a function signature: typedef int (*Index_UpdateVector)(VecSimIndex* index, const void* blob, size_t old_id, size_t new_id);
typedef int (*Index_UpdateVector)(VecSimIndex* index, const void* blob, size_t old_id, size_t new_id);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The function will have 3 return values.
Old_id
andvector
match.Old_id
matches,vector
does not match.Old_id
does not match regardless of thevector
match.The function will be used by RediSearch when a document gets updated in order to avoid deletion and addition of a vector which are costly.
Suggestion for a function signature:
typedef int (*Index_UpdateVector)(VecSimIndex* index, const void* blob, size_t old_id, size_t new_id);
The text was updated successfully, but these errors were encountered: