我已经使用 Nutch 索引了一个站点,现在我正在使用 Zend Lucene 库搜索索引。
我实际上已经将 Zend 库拉入了 Codeigniter,但是这一切都是 Zend 做的。
我可以很好地显示标题、分数和网址,但我找不到显示页面内容的字段名称。
到目前为止,我有以下代码
$index = new Zend_Search_Lucene('C:\nutch\nutch-0.9\my-search\index');
$query = $this->input->post('searchQuery');
$hits = $index->find($query);
echo "<p>Index contains " . $index->count() . " documents.</p>";
echo "<p>Search for '" . $query . "' returned " . count($hits) . " hits</p>";
foreach ($hits as $hit)
{
echo "<h4>" . $hit->title . "</h4>";
echo "<p><b>Score:</b> " . sprintf('%.2f', $hit->score) . "</p>";
echo "<p><b>Url:</b> " ."<a href='" . $hit->url . "'>" . $hit->url. "</a></p>";
}
任何人都可以帮助显示内容或内容摘要的字段名称吗?
谢谢