Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Juozas Kaziukenas' Blog:
Starting with Zend_Search_Lucene
Mar 12, 2009 @ 17:09:56

Juozas Kaziukenas has a recent post to his blog introducing one of the many useful components of the Zend Framework - Zend_Search_Lucene.

As websites grows, searches like "LIKE title '%search term%'" becomes unreliable. There are very good solutions like Sphinx, Lucene, etc, but not surprisingly, you can't always have Sphinx installed (shared servers again) and other solutions should be chosen. [...] How you start indexing data? Zend manual has very good examples how to start with Lucene.

He includes some basic code to create an index for your data (his example pulls information from a database) and how to search that data for a string ('title:"Apple MacBook"' in his case, searching specifically on the title field in his index).

tagged: zendframework zendsearchlucene tutorial create index search database

Link:


Trending Topics: