Is it possible to do accent-insensitive search with redisearch? I need the same functionality as SqlServer Collations provides.
e.g. There is a string in index Atsargų likučiai pagal sandėlius. It should be found by query string likučiai as well as likuciai.
Simple and dirty solution would be to store multiple versions of text - real and normalized, normalize all queries, search normalized versions and return real versions as result. But with millions of documents this solution would consume significant amount of memory. Is there a clean way to accomplish this?