Smart Keyword Search

I have a vocab taxonomy assigned to a content type in Drupal 6. Then I expose (using "is one of") as a field in views that allows the user to search for keywords.

The problem is when it runs a query, it references that term first, so instead of using an instruction like this, it looks at the term in the taxonomy table and returns its ID. Therefore, if the user searched for one existing term and another that not all this will fail, and does not return matching results for the first existing term.

Is there a way to accomplish partial matching using views?

thank

+2


source to share


1 answer


For anyone looking for an answer, the best implementation I could find is Apache Solr.

It's relatively easy to set up if you have your own server.



More information can be found here - http://drupal.org/project/apachesolr

+1


source







All Articles