我用這個來創建索引與Zend Lucene的非常簡單的公司指數:如何使用Zend Lucene搜索郵編?
// store company primary key to identify it in the search results
$doc->addField(Zend_Search_Lucene_Field::Keyword('pk', $this->getId()));
// index company fields
$doc->addField(Zend_Search_Lucene_Field::Unstored('zipcode', $this->getZipcode(), 'utf-8'));
$doc->addField(Zend_Search_Lucene_Field::Unstored('name', $this->getName(), 'utf-8'));
我可以對公司名稱進行搜索,但不是郵政編碼。 Zend Lucene搜索索引整數有問題嗎?如果可以擺脫一些有經驗的燈光,請幫助我。我只能想象使用Lucene通過郵編搜索很常見。
索引看起來很好。您可以發佈您的搜索查詢嗎? – 2009-06-01 11:42:09