Closed
Description
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 !