I am trying to implement a full text for set of models. I heard the power of sphinx in its indexing speed and search time. But wild card searches and nearest word match ( Levenshtein distance) are not working in this.
Post.search 'kar'
returns no results while
Post.search 'karthik'
returns 10 results matching the exact string. I even tried with star parameter
Post.search 'kar' , :star => true
which returns zero results.
I tried with all combinations like 'kar*
' , 'krathik~
' , etc in lucene flavored full text search engines and it works fine. Am I missing any optional parameters or does sphinx still lacks this feature?