Php – Whats a fast alternative to plain fulltext searching in php

MySQLPHPsearch

Im looking to improve the search in one of my applications, where I sue regular fulltext searching, which isn't too bad, but Im looking to add some more complex behaviors, such as typo recognition and better relevancy.

Are there any solutions out there that can be integrated into an existing application? Im looking to search several tables in a single mysql DB, nothing complicated.

It has to work with non-apache servers (I use lighttpd).

Best Answer

Give a look to Zend_Search_Lucene it's a PHP5 port of the Apache Lucene project, the query language is very powerful.

Related Topic