In Sphinx
, I want to search for a phrase in comma separated string.
For example, the comma separated string is Very Expensive,Luxury,Romance,Trendy
.
The phrase "Expensive"
should not match this record, but the phrase "Very Expensive"
should be matched.
Tried setting Phrase Boundary option in sphinx configuration file and rotated the indexer again, but there is no change in the output.
phrase_boundary = U+002C # comma
phrase_boundary_step = 100
I'm using Sphinx 2.0.5
with PHP
as scripting language.