I want to perform fuzzy search in redissearch. Let's say I have "JEREMY,J" in tag field in the database. I want to find JEREM. I tried
FT.SEARCH employee "@FN_Tags:{JEREM}~0.2"
but it doesn't appear to work
Right now the only query that appears to work is processing only TEXT fields:
FT.SEARCH employee "@FN_Fuzzy:%JEREM%"
But trying to do so over tags results in a syntax error
FT.SEARCH employee "@FN_Tags:{%JEREM%}"