You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HI Team,
Thanks for the effort you guys put in, that helps everyone.
wanted to get this added to Nredisearch : it is present in Jredisearch as well here is the id from jredissearch repo RediSearch/JRediSearch@751c644
can we get this added in NRedisearch as well ? we can't query sort on tagfields, Redissearch allows us to do it ,
hope we can get it enabled for NRedissearch too
The text was updated successfully, but these errors were encountered:
/// <summary>
/// Add a text field that can be sorted on.
/// </summary>
/// <param name="name">The field's name.</param>
/// <param name="weight">Its weight, a positive floating point number.</param>
/// <returns>The <see cref="Schema"/> object.</returns>
public Schema AddSortableTextField(string name, double weight = 1.0)
{
Fields.Add(new TextField(name, weight, true));
return this;
}`
```
similarly, we a property like so would also help
```
/// <summary>
/// Add a text field that can be sorted on.
/// </summary>
/// <param name="name">The field's name.</param>
/// <param name="weight">Its weight, a positive floating point number.</param>
/// <returns>The <see cref="Schema"/> object.</returns>
public Schema AddSortableTagField(string name, double weight = 1.0)
{
Fields.Add(new TagField(name, weight, true));
return this;
}
```
HI Team,
Thanks for the effort you guys put in, that helps everyone.
wanted to get this added to Nredisearch : it is present in Jredisearch as well here is the id from jredissearch repo
RediSearch/JRediSearch@751c644
can we get this added in NRedisearch as well ? we can't query sort on tagfields, Redissearch allows us to do it ,
hope we can get it enabled for NRedissearch too
The text was updated successfully, but these errors were encountered: