I'm using the default settings in the PHP library and am using the latest version of Sphinx (2.2.3). I need to make search results match more loosely. Here are my index settings in sphinx.conf
:
morphology = stem_en
min_word_len = 1
min_prefix_len = 1
prefix_fields = name
expand_keywords = 1
If I search for Nexus 7
on my website then a ton of search results show up (the Nexus 7 tablets and then lots of accessories for it), but if I search for ASUS New Nexus 7 FHD Tablet, Black
then only the tablets show up (none of the accessories). It's like Sphinx isn't showing the accessories because they don't contain all of the keywords in the search.
How can I make Sphinx match items more "loosely" so that items that don't match exactly still show up?