本文主要是介绍IndexWriter的初始化,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
package indexwriter;import org.apache.lucene.store.Lock;
//IndexWriter的三个构造函数
//String类型的绝对路径
//public IndexWriter(String path, Analyzer a, boolean create);
//Field类型的经过打包的绝对路径
//public IndexWriter(Field path, Analyzer a, boolean create);
//Directory类型的是lucene内部的一种目录表达方式
//public IndexWriter(Directory d, Analyzer a, boolean create);
//Analyzer是一个Lucene的重要工具,负责对各种输入的数据源进行分析,包括过滤,分词等多中功能。
//第三个boolean的参数是由第一个参数所指定的路径处,删除源目录内的内容在重新建立索引。
//如果已经创建了,就在后面继续添加
//私有构造函数
public class Indexwriter {
private IndexWriter(Directory d, Analyzer a, final boolean create, boolean closeDir) throws IOException{
this.cloneDir = closeDir;
//将索引的存放目录存入IndexWriter
directory = d;
//将Analyzer存入IndexWriter
analyzer = a;
//为索引的存放目录构造一个Writer.lock, 这是为了防止有两个进程同时修改目录
Lock WriterLock = directory.makeLock(IndexWriter.WRITER_LOCK_NAME);
if(!writerLock.obtain(writeLockTimeout))
throws new IOException("Index locked for writer: " + writerLock);
//把writer.lock存放IndexWriter
this.writeLock = writeLock;
//对目录进行同步
synchronized (directory)
{
//告诉主目录,这个写正确的IndexWriter需要对其进行操作
new Lock.with(directory.makeLock(IndexWriter.COMMIT_LOCK_NAME), commitLockTimeOut){
public Object doBody() throws IOException
{
//如果是删除源文件,则向目录写入索引的基础信息
if(create)
segmentInfos.write(directory);
//否则从原先的文件中读取出索引的当前基础信息
else
segmentInfos.read(directory);
return null;
}
}.run();
}
}
}
这篇关于IndexWriter的初始化的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!