我正在为新闻网站实现搜索功能。在那个网站上,用户提交包含标题和文本的新闻文章,目前这些文章是直接插入数据库的。听说在包含 long..long 文本的数据库中进行全文搜索效率不高。
所以我尝试使用 lucene 进行索引和搜索。我可以用它索引完整的数据库,也可以搜索内容。但我不确定我是否使用了最好的方法。
这是我的索引器类:
public class LuceneIndexer {
public static void indexNews(Paste p ,IndexWriter indexWriter) throws IOException {
Document doc = new Document();
doc.add(new Field("id", p.getNewsId(), Field.Store.YES, Field.Index.NO));
doc.add(new Field("title", p.getTitle(), Field.Store.YES, Field.Index.TOKENIZED));
doc.add(new Field("text", p.getNewsRawText(), Field.Store.YES, Field.Index.UN_TOKENIZED));
String fullSearchableText = p.getTitle() + " " + p.getNewsRawText();
doc.add(new Field("content", fullSearchableText, Field.Store.NO, Field.Index.TOKENIZED));
indexWriter.addDocument(doc);
}
public static void rebuildIndexes() {
try {
System.out.println("started indexing");
IndexWriter w = getIndexWriter();
ArrayList<News> n = new GetNewsInfo().getLastPosts(0);
for (News news : n) {
indexNews(news,w );
}
closeIndexWriter(w);
System.out.println("indexing done");
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public static IndexWriter getIndexWriter() throws CorruptIndexException, LockObtainFailedException, IOException {
IndexWriter indexWriter = new IndexWriter(GlobalData.LUCENE_INDEX_STOREAGE, new StandardAnalyzer(), true);
return indexWriter;
}
public static void closeIndexWriter(IndexWriter w) throws CorruptIndexException, IOException {
w.close();
}
上面的代码有效吗?
我认为我应该在用户提交文档时将其添加到索引中,而不是再次索引整个数据库。
- 每次提交文章时我都需要创建新的 IndexWriter 吗?
- 频繁地打开和关闭 IndexWriter 有效率吗?