Zend Framework Lucene Boolean / “Google”-like search
问题 I'm working on the application at http://demos.zatechcorp.com/codeigniter/ In its current incarnation running on my machine, I loaded the ZendFramework inside Codeigniter, and generated an index, like this: // ... Some code that loads all the markets foreach ($markets as $market) { $doc = new Zend_Search_Lucene_Document(); // Id for retrieval $doc->addField(Zend_Search_Lucene_Field::UnIndexed('id', $market->id)); // Store document URL to identify it in search result. $doc->addField(Zend