Hello,
In Redisearch 1.x I was storing fields with diacritics inside the hash, and replacing the diacritics with their equivalent in the English language during the FT.ADD operation, which then allowed me to match with or without diacritics during search or aggregation as I was also replacing the accents of the search terms.
What would be the most efficient way to do this in Redisearch 2.0? I could duplicate each property on my object of course without diacritics, and use it for indexing, however I am hoping there is a better way to achieve this.
Thanks!