Sfisioza
Sfisioza

Reputation: 3930

Faceted search with PHP and Lucene

Is there any way to create a faceted search using Zend Lucene?

I'm limited to shared hosting, and I don't have any option to use Solr.

Upvotes: 1

Views: 367

Answers (1)

Rakesh Sankar
Rakesh Sankar

Reputation: 9415

I doubt this is supported in the current version of ZF1-Lucene, you should probably use the standalone SOLR on your server and write your own wrappers on top of SOLR for your use. Before writing your own please visit below links to get some insights on an existing libraries available for PHP/Zend on top of SOLR.

  1. https://stackoverflow.com/q/19751146/765854
  2. https://github.com/bluedaniel/Zend-Service-Solr

Upvotes: 1

Related Questions