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

Zend:
Roll Your Own Search Engine with Zend_Search_Lucene
Mar 30, 2006 @ 14:23:29

With the Zend Framework making such a splash in the PHP community, people can't seem to get enough tutorials and information surrounding it. So, in an effort to feed that need, Zend has published this new tutorial covering the Zend_Search_Lucene package.

One of the features that sets the Zend Framework apart from the others is the inclusion of a decent search module. Zend_Search_Lucene is a php port of the Apache Lucene project, a full-text search engine framework. Zend_Search_Lucene promises a simple way to add search functionality to an application without requiring additional php extensions or even a database.

Zend_Search_Lucene overcomes the usual limitations of relational databases with features such as fast indexing, ranked result sets, a powerful but simple query syntax, and the ability to index multiple fields. Better still, a Zend_Search_Lucene index can live happily alongside your relational database to provide fast searching but without duplicating the effort of storing all of your data twice. In this tutorial, I'll show you how to use Zend_Search_Lucene to index and search some RSS feeds.

Mostly due to the simplicity of Zend's Framework setup, the tutorial isn't too long. It looks at the creation of the index (with a sample of fetching RSS feeds) and how to use this index to search their contents. There's even an outline of what kind of data can be associated with what kinds of fields.

[digg it]

tagged: zend search zend_search_lucene text rss example tutorial zend search zend_search_lucene text rss example tutorial

Link:


Trending Topics: