BoostChangeQuery.java
上传用户:cctqzzy
上传日期:2022-03-14
资源大小:12198k
文件大小:2k
源码类别:

搜索引擎

开发平台:

Java

  1. package chapter7;
  2. import java.io.IOException;
  3. import org.apache.lucene.document.Field;
  4. import org.apache.lucene.document.Document;
  5. import org.apache.lucene.store.RAMDirectory;
  6. import org.apache.lucene.queryParser.*;
  7. import org.apache.lucene.search.Query;
  8. import org.apache.lucene.search.Hits;
  9. import org.apache.lucene.index.IndexWriter;
  10. import org.apache.lucene.search.IndexSearcher;
  11. import org.apache.lucene.analysis.standard.StandardAnalyzer;
  12. public class BoostChangeQuery {
  13. static String[] ContentList = { "Lucene 使用 方便", "Lucene 功能 强大", "Lucene 开放 源码" };
  14. static String[] NumberList = { "No.1", "No.2", "No.3"};
  15. public static void main(String[] args) throws IOException{
  16. searchIndex();
  17. }
  18. // 创建索引并修改boost值,改变检索结果排序
  19. private static void searchIndex() throws IOException{   
  20. try{
  21. RAMDirectory ramdirectory = new RAMDirectory(); // 内存目录
  22. IndexWriter writer = new IndexWriter(ramdirectory,new StandardAnalyzer(),true);
  23. for (int i = 0; i < ContentList.length; i++)
  24.     {
  25.         Document document = new Document(); // 创建文档对象
  26.         // 创建域对象
  27.         Field fieldContent = new Field("Content", ContentList[i], Field.Store.YES, Field.Index.TOKENIZED);
  28.         Field fieldNumber  = new Field("Number", NumberList[i], Field.Store.YES, Field.Index.TOKENIZED);
  29.         //fieldContent.setBoost((i+1)*2);
  30.         document.add(fieldContent);         // 添加创建的文本域到当前文档
  31.         document.add(fieldNumber);
  32.         //document.setBoost((i+1)*2);         // 这里设置文档优先级
  33.         writer.addDocument(document);       // 完成的文档添加到索引
  34.     }
  35. writer.close();                         // 关闭索引
  36.     IndexSearcher searcher = new IndexSearcher(ramdirectory);             // 创建检索器
  37.     QueryParser parser = new QueryParser("Content",new StandardAnalyzer());  // 创建查询分析器
  38.     Query  query = parser.parse("Lucene");    // 生成查询对象
  39.     Hits rstDoc = searcher.search(query);     // 检索结果保存Hits集合
  40.     for (int i = 0; i < rstDoc.length(); i++) // 遍历获取文档,并读取相关参数
  41.     {
  42.         Document doc = rstDoc.doc(i);
  43.         System.out.println(doc.get("Number") + " " + doc.get("Content") + " Boost: " + doc.getBoost() + ", score : " + rstDoc.score(i));
  44.     }
  45.     searcher.close();
  46. } catch(ParseException e){
  47. System.out.println("ParseException ");
  48. } catch(IOException e){
  49. System.out.println("IOException  ");
  50. }
  51. }
  52. }