I have a small data set stored on MySQL and I would like to avoid using/managing ElasticSearch/Sphinx etc. instances, keeping up the index updated etc. and use MySQL full text indexes for searching them.
But my particular requirement is doing a fuzzy search which can find "Türkçe" when keyword is "Turkce" or vice versa.
I'm not familiar with the terminology so couldn't decide between features. How can I do that with MySQL? Should I use Soundex or any other function?
Thank you very much.