When we create an index on redisearch, we specify different fields with their weights e.g. title text weight 50 description text weight 25 and as per my understanding these weights determine the ordering of results.
I want to know is there a way to specify fields weights which searching i.e. using FT.SEARCH
I would like to change field weights on runtime i.e. according to the query.
I would like to accomplish something like this
FT.SEARCH idx john description weight 50 title weight 25
See how I have tried to change weights while querying.