I use SphinxQl, I got query like this
SELECT `id`, WEIGHT() as relevance FROM `rt_table` WHERE MATCH('dubai')
I want to set match mode extended to make search by * (wildcard) like
SELECT `id`, WEIGHT() as relevance FROM `rt_table` WHERE MATCH('dub*')
to get all data which contains "dub" substring.
min_word_len = 1
min_prefix_len = 2
and this is part of my config of index . I have tried set min_infix_len=2 but it does not help Problem is that I can not make wildcard search *.
Please help someone!