本月博客排行
-
第1名
wy_19921005 -
第2名
mft8899 -
第3名
benladeng5225 - duanfei
- Anmin
- wddpwzzhao123
年度博客排行
-
第1名
龙儿筝 -
第2名
宏天软件 -
第3名
wy_19921005 - benladeng5225
- vipbooks
- kaizi1992
- tanling8334
- sam123456gz
- arpenker
- zysnba
- fantaxy025025
- xiangjie88
- wallimn
- e_e
- jh108020
- ganxueyun
- Xeden
- xyuma
- wangchen.ily
- zhanjia
- johnsmith9th
- zxq_2017
- forestqqqq
- jbosscn
- daizj
- xpenxpen
- 喧嚣求静
- kingwell.leng
- lchb139128
- kristy_yy
- 青否云后端云
- javashop
- lzyfn123
- sunj
- yeluowuhen
- ajinn
- lerf
- lemonhandsome
- chenqisdfx
- xiaoxinye
- lyndon.lin
- flashsing123
- bosschen
- zhangjijun
- sunnylocus
- lyj86
- paulwong
- sgqt
- hudiemeng870329
- mft8899
最新文章列表
Lucene之Field
doc.add(new Field("file",file.getName(),Field.Store.YES,Field.Index.NO));
//doc.add(Field.UnIndexed("file", file.getName()));
后者在lucene的后续版本中找不到了,可能是被抛弃的方法吧.现在用上面的方法代替.
org.apache. ...
lucene中文分词组件共享
IKAnalyzer基于lucene2.0版本API开发,实现了以词典分词为基础的 正反向全切分 以及 正反向最大匹配切分 两种算法,是Lucene Analyzer接口的实现,代码使用例子如下:下载地址:Lucene中文分词器 V1.2 CSDN下载Lucene中文分词器 V1.2 Google下载正反向全切分算法:实现类 : org.mira.lucene.analysis.IK_CAnalyz ...
昨日网摘 [2006-12-24:anux @ del.icio.us]
ferret - TracFerret is a high-performance, full-featured text search engine library written for Ruby. It is inspired by Apache Lucene Java project.《商业周刊》 创新在中国障碍与生俱来计划生育政策下出生的一代人正成为大学生的主要力量,他们要求不同以往的设施 ...
Lucene2.0简单例子
package gt.test.lucene; import java.io.IOException; import org.apache.lucene.analysis.Analyzer;import org.apache.lucene.analysis.standard.StandardAnalyzer;import org.apache.lucene.document.Document; ...