- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我现在有一个问题,这个问题是关于 lucene 的。我试图制作一个可以进行索引并将它们首先存储在内存中的lucene源代码使用 RAMDirectory 然后将内存中的这个索引刷新到磁盘中使用 FSDirectory。我对这段代码做了一些修改,但是徒劳无功。也许你们中的一些人可以帮我一些忙。
那么我在这个源中集成 RAMDirectory 的最佳方式是什么将它们放入 FSDirectory 之前的代码。任何帮助,将不胜感激尽管这是源代码。
import org.apache.lucene.analysis.SimpleAnalyzer;
import org.apache.lucene.document.Document;
import org.apache.lucene.document.Field;
import org.apache.lucene.index.IndexWriter;
import org.apache.lucene.store.FSDirectory;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
public class SimpleFileIndexer {
public static void main(String[] args) throws Exception {
File indexDir = new File("C:/Users/Raden/Documents/lucene/LuceneHibernate/adi");
File dataDir = new File("C:/Users/Raden/Documents/lucene/LuceneHibernate/adi");
String suffix = "txt";
SimpleFileIndexer indexer = new SimpleFileIndexer();
int numIndex = indexer.index(indexDir, dataDir, suffix);
System.out.println("Total files indexed " + numIndex);
}
private int index(File indexDir, File dataDir, String suffix) throws Exception {
IndexWriter indexWriter = new IndexWriter(
FSDirectory.open(indexDir),
new SimpleAnalyzer(),
true,
IndexWriter.MaxFieldLength.LIMITED);
indexWriter.setUseCompoundFile(false);
indexDirectory(indexWriter, dataDir, suffix);
int numIndexed = indexWriter.maxDoc();
indexWriter.optimize();
indexWriter.close();
return numIndexed;
}
private void indexDirectory(IndexWriter indexWriter, File dataDir, String suffix) throws IOException {
File[] files = dataDir.listFiles();
for (int i = 0; i < files.length; i++) {
File f = files[i];
if (f.isDirectory()) {
indexDirectory(indexWriter, f, suffix);
} else {
indexFileWithIndexWriter(indexWriter, f, suffix);
}
}
}
private void indexFileWithIndexWriter(IndexWriter indexWriter, File f, String suffix) throws IOException {
if (f.isHidden() || f.isDirectory() || !f.canRead() || !f.exists()) {
return;
}
if (suffix != null && !f.getName().endsWith(suffix)) {
return;
}
System.out.println("Indexing file " + f.getCanonicalPath());
Document doc = new Document();
doc.add(new Field("contents", new FileReader(f)));
doc.add(new Field("filename", f.getCanonicalPath(), Field.Store.YES, Field.Index.ANALYZED));
indexWriter.addDocument(doc);
}
}
最佳答案
我不确定这样做是否会提高性能,但您可以在 RAMDirectory
上进行所有索引,然后将目录复制到 FSDirectory。
像这样:
private int index(File indexDir, File dataDir, String suffix) throws Exception {
RAMDirectory ramDir = new RAMDirectory(); // 1
IndexWriter indexWriter = new IndexWriter(
ramDir, // 2
new SimpleAnalyzer(),
true,
IndexWriter.MaxFieldLength.LIMITED);
indexWriter.setUseCompoundFile(false);
indexDirectory(indexWriter, dataDir, suffix);
int numIndexed = indexWriter.maxDoc();
indexWriter.optimize();
indexWriter.close();
Directory.copy(ramDir, FSDirectory.open(indexDir), false); // 3
return numIndexed;
}
关于java - 如何将 RAMDirectory 集成到 lucene 中的 FSDirectory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3913180/
谁能解释一下 FSDirectory 和 MMapDirectory 之间的区别是什么?我想预热我的缓存。我读到这可能有用,但找不到这对预热缓存有何帮助。如果您有任何想法,请向我解释。甚至欢迎指点。
第一次发帖;长期读者。如果这里已经有人问过这个问题,我很抱歉(我也是 lucene 的新手!)。我做了很多研究,但无法为我的问题找到好的解释/示例。 首先,我使用 IKVM.NET 将 lucene
我写了一个简单的 java 程序来创建一个 lucene 索引,但是我遇到了语法错误。 我的代码: static final String INDEX_DIRECTORY = "/home/yuqin
所以我试图在 PyLucene 中实现一个基本的索引编写器。我通常是一名 java 开发人员,但由于技术限制,我在 python 中执行此操作,否则这不会成为问题。我正在关注 PyLucene Tar
我正在尝试在我的 Asp.Net Core 2.0 项目上实现“Lucene 搜索”。 var dir = FSDirectory.Open(new DirectoryInfo(@"C:/test_
我只是一个 lucene 初学者,在从 RAMDIRECory 更改为 FSDirectory 期间遇到了一个问题: 首先是我的代码: private static IndexWriterCo
我现在有一个问题,这个问题是关于 lucene 的。我试图制作一个可以进行索引并将它们首先存储在内存中的lucene源代码使用 RAMDirectory 然后将内存中的这个索引刷新到磁盘中使用 FSD
我在 java 1.8 上有一个工作应用程序,但我必须在 java 1.6 中更改它,因为没有: import java.nio.file.Path; import java.nio.file.Pat
我是一名优秀的程序员,十分优秀!