hadoop和全文检索的结合开始(更新中)

10 篇文章 0 订阅
2 篇文章 0 订阅

尝试中,更新中。。

本文基于hadoop1.0和lucene4.4

/**
* @param indexFiles 需要索引的文件
* @throws Exception
*/
public void doIndex(String indexFiles) throws Exception {
    BufferedReader filereader = getBR(FILE.HDF,indexFiles); //获取文件的buffer流
    if(filereader ==null ) return ;
    String row = null;
    while ((row = filereader.readLine()) != null) {
        Document document = genDoc(row); //每行对应生产一个document,自定义
        indexWriter.addDocument(document); //添加入IndexWriter
    }
    indexWriter.optimize(); //索引优化
    indexWriter.close(); //写入
    filereader.close();
}


private BufferedReader getBR(FILE where,String indexFiles) throws IOException {
    switch (where)

   {
      case LOCAL: { //本地文件读取
             return new BufferedReader(new FileReader(indexFiles));
              }

     case HDF: {//hdf文件获取
           FileSystem dfs = FileSystem.get(config); //FileSystem获取,需要获取hadoop的configuration配置信息,其中主要的是期望获取hdfs空间的地址
           FSDataInputStream fsin = dfs.open(new Path(indexFiles));
           return new BufferedReader(new InputStreamReader(fsin, "UTF-8")); //FSDataInputStream 是InputStream的继承类
            }
    default:
        break;
   }
    return null;
}


public String doSearch(String searchField) throws Exception {
    if(searcher==null) {
        System.out.println("start search...");
        searcher = new IndexSearcher(rdir); //注意了,rdir是RAMDirectory噢,并且是当前jvm中建好索引的那个RAMDirectory 哟~~
        System.out.println("Total Documents = " + searcher.maxDoc()); //查看已经建立好的document数量
    }
    if(queryParser==null) queryParser = new QueryParser(Version.LUCENE_30, Field,
            new StandardAnalyzer(Version.LUCENE_30));  //Field用于自定义,指定你要查询的那个字段

        Query query = queryParser.parse(searchField);  //查询给定的值
        TopDocs hits = searcher.search(query, n);  //开始查询,n用于自定义,表示你期望查询的结果的条数
        System.out.println("Number of matching documents = " + hits.totalHits); //输出实际查询到的条数
        for(int i = 0; i<hits.totalHits;i++)
            ScoreDoc sdoc = hits.scoreDocs[i]; //获取结果集
            Document doc = searcher.doc(sdoc.doc); //获取对应的doc文件,如果需要的话
            handle(doc) ; //自定义,处理查询出来的document
        }

}





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

sg_0504

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值