我什么时候应该使用Lucene的RAMDirectory?与其他存储机制相比,它有什么优势?最后,在哪里可以找到一个简单的代码示例?
最佳答案
当您不想永久存储索引数据时。我将其用于测试目的。将数据添加到RAMDirectory,在RAMDir中进行单元测试。
例如
public static void main(String[] args) {
try {
Directory directory = new RAMDirectory();
Analyzer analyzer = new SimpleAnalyzer();
IndexWriter writer = new IndexWriter(directory, analyzer, true);
要么
public void testRAMDirectory () throws IOException {
Directory dir = FSDirectory.getDirectory(indexDir);
MockRAMDirectory ramDir = new MockRAMDirectory(dir);
// close the underlaying directory
dir.close();
// Check size
assertEquals(ramDir.sizeInBytes(), ramDir.getRecomputedSizeInBytes());
// open reader to test document count
IndexReader reader = IndexReader.open(ramDir);
assertEquals(docsToAdd, reader.numDocs());
// open search zo check if all doc's are there
IndexSearcher searcher = new IndexSearcher(reader);
// search for all documents
for (int i = 0; i < docsToAdd; i++) {
Document doc = searcher.doc(i);
assertTrue(doc.getField("content") != null);
}
// cleanup
reader.close();
searcher.close();
}
通常,如果RAMDirectory可以正常工作,则可以与其他程序很好地工作。即永久存储您的索引。
替代方法是FSDirectory。在这种情况下,您将必须注意文件系统权限(这对于RAMDirectory无效)
从功能上讲,RAMDirectory没有比FSDirectory明显的优势(除了RAMDirectory明显比FSDirectory更快的事实之外)。它们都满足两个不同的需求。
非常类似于RAM和硬盘。
我不确定如果RAMDirectory超出内存限制,将会发生什么情况。除了一个
OutOfMemoryException:
System.SystemException
抛出。