I have been using regexp_fitler
to good effect in my Sphinx
configurations, however as far as I know it applies to the entire index in my select.
If my select for idx_example
is:
Select Name,Description,City,State from TableA
and I do a regexp_filter e.g.
NY > New York
I can run into issues in for instance the Description
field. I realize I can solve this with more complex patterns however given that the State
fields I am getting are either Acronyms for Full-Names there is no reason to IF I can somehow force the regexp_filter
to act only upon the State
field.