Hi, I am getting inconsistent results in the following two queries. The queries ask for different constraints, but with the exact same modifiers (SORTBY, LIMIT, RETURN).
> FT.SEARCH ip1 "*" RETURN 1 _t LIMIT 0 1 SORTBY _t DESC
1) (integer) 101233
2) "p:789181"
3) 1) _t
2) "1561614302"
> FT.SEARCH ip1 "@tags:{f\\:suzukicycles}" RETURN 1 _t LIMIT 0 1 SORTBY _t DESC
1) (integer) 6
2) "p:792514"
3) 1) _t
2) "1561671353"
I expected the first query to return p:792514 as the top result since its "_t" field is bigger than p:789181.
Michael