使用RAMDirectory

时间:2009-03-23 15:39:37

标签: lucene lucene.net

我什么时候应该使用Lucene的RAMDirectory?与其他存储机制相比,它有哪些优势?最后,我在哪里可以找到一个简单的代码示例?

1 个答案:

答案 0 :(得分:17)

如果您不想永久存储索引数据。我用它来测试。将数据添加到RAMDirectory,在RAMDir中进行单元测试 例如

 public static void main(String[] args) {
    try {
      Directory directory = new RAMDirectory();  
      Analyzer analyzer = new SimpleAnalyzer();
      IndexWriter writer = new IndexWriter(directory, analyzer, true);

OR

  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更快的事实)。他们都服务于两种不同的需求。

  • RAMDirectory - &gt;主要记忆
  • FSDirectory - &gt;辅助记忆

非常类似于RAM&amp;硬盘。

我不确定如果RAMDirectory超出内存限制会发生什么。我除了

  

OutOfMemoryException:   System.SystemException

抛出。