2
我正在寫基於Zend SearchLucène的搜索引擎。有什麼更好?一個大場還是很多小?
我的對象有很多不同的字段(10個文本類型),我想知道哪種方法是最好的。 (所有字段未保存,只是索引,我不需要恢復它們。)
一個大的領域,(許多小場的串聯):
$content = $textfield1 . $textfield2 . $textfield3 . $textfield4 ...
Zend_Search_Lucene_Field::unStored("content", $content);
OR
許多小場:
Zend_Search_Lucene_Field::unStored("content", $textfield1);
Zend_Search_Lucene_Field::unStored("content2", $textfield2);
Zend_Search_Lucene_Field::unStored("content3", $textfield3);
....
....
每個字段可能包含大量的文本(約500字以上)。
非常啓發 – TeChn4K 2012-02-10 11:50:43