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中方式结合起来,灵活运用,如图:

 


Lucene2.4 索引库位置介绍
 

 

 

 

你可能感兴趣的:(Lucene)