全文检索
文章平均质量分 77
whywordonly
这个作者很懒,什么都没留下…
展开
-
lucene入门学习(一)
public class LuceneUtil { /** * 创建索引 * @throws IOException */ public void index() { //2.创建IndexWriter(用来添加索引) IndexWriter indexWriter = null; try { //1.创建Directory // Dir...原创 2012-04-26 20:30:45 · 80 阅读 · 0 评论 -
solr入门学习
Tomcat7,solr3.6,mmseg1.8 1:环境的搭建 1:解压tomcat,solr,mmseg4j 2:复制dist文件夹下apache-solr.war到tomcat的webapp文件夹下,修改文件名为solr(不该也行,这里修改文件名方便一会地址栏的输入) 3:创建solr-tomcat文件夹作为solr的根目录 4:tomcat/conf/Catalina/local...原创 2012-05-10 21:03:30 · 151 阅读 · 0 评论 -
lucene学习(一)-------索引的创建,修改,删除,查询
public abstract class BaseIndexingTestCase { protected String[] keywords = {"1", "2"}; protected String[] unindexed = {"Netherlands", "Itely"}; protected String[] unstored = {"Amsterdam has lots...原创 2012-05-14 18:20:48 · 83 阅读 · 0 评论