Lucene2.4 索引库位置介绍

在Lucene第一个简单实例中,我们是直接把文件位置indexPah作为索引库位置:

IndexWriter indexWriter = new IndexWriter(indexPath,analyzer,true,MaxFieldLength.LIMITED);

 

今天我们将介绍Lucene提供的一个索引库位置的类Directory

String filePath = "G:\\work5\\luceneDemo\\luceneDatasource\\IndexWriter addDocument's a javadoc .txt";
	String indexPath = "G:\\work5\\luceneDemo\\luceneIndex";
	Analyzer analyzer = new StandardAnalyzer();
	@Test
	public void test1() throws Exception{
		//Directory dir = FSDirectory.getDirectory(indexPath);//FSDirectory 索引库位置是文件系统
		Directory dir = new RAMDirectory();//RAMDirectory 索引库位置是内存
		
		Document doc = File2Document.file2Document(filePath);
		
		IndexWriter indexWriter = new IndexWriter(dir,analyzer,true,MaxFieldLength.LIMITED);
		indexWriter.addDocument(doc);
		indexWriter.close();
	}

 Directory是一个抽象类,提供了2种实现,第一个是FSDirectory,另外一个是RAMDirectory

 

RAMDirectory在内存操作,效率比较高,但不保存

FSDirectory在磁盘操作,IO操作多的话,效率偏低,但可以保存

 

在工作中,我们可以将这2中方式结合起来,灵活运用,如图:

 



 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值