Hi, I have an application (written with ZF) that has a search function. It performs a series of queries in different tables (some with join), some with fulltext in order to show the results to the user. This is sometimes slow (~11 sec) so I am looking for a better/faster alternative.
I've considered using a regular search engine such a htDig or mnoGoSearch but they index everything and I need to be able to tell index this field and not that or if the results appear in this field give a higher score than if it happens on that. Can I use Lucene and ZF to do that? Any examples besides the ones found in the manual will be great. We are talking about a 30000 'documents' each with ~1KB of data. Thanks.
