-
Notifications
You must be signed in to change notification settings - Fork 41
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
Index.Attribute throws error for sortable fields #291
Labels
bug
Something isn't working
Comments
Hi @ivanjt-srai , I'm on it 👍 |
@ivanjt-srai this PR should solve it, LMK what you think. |
sure @shacharPash thanks for picking it up, when can I expect the fix to be available to use? |
@ivanjt-srai In the next few days we will merge it to master |
do we have any update on this @shacharPash ? |
|
@ivanjt-srai The fix has been merged into the main branch. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
NRedisStack Version: 0.12.0

Redis Stack Version:
Description:

For sorted attributes , index.Attributes throws request.System.IndexOutOfRangeException: Index was outside the bounds of the array.
This is how i add text field:
schema.AddTextField(item.Key, sortable: true);
This is how index is created
var ftCreateParams = new FTCreateParams().On(IndexDataType.HASH)
.Temporary(expiryTime)
.Prefix(payloadPrefix);
note that , almost all of the fields are marked as sortable
This issue does not happen when i mark the fields false for sortable.
Please help !
The text was updated successfully, but these errors were encountered: