本文整理匯總了Java中org.apache.lucene.store.MMapDirectory.setUseUnmap方法的典型用法代碼示例。如果您正苦於以下問題:Java MMapDirectory.setUseUnmap方法的具體用法?Java MMapDirectory.setUseUnmap怎麽用?Java MMapDirectory.setUseUnmap使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.lucene.store.MMapDirectory
的用法示例。
在下文中一共展示了MMapDirectory.setUseUnmap方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: initSettings
import org.apache.lucene.store.MMapDirectory; //導入方法依賴的package包/類
public void initSettings(Path stateDir, LuceneSettings settings) throws Exception {
if (this.settings != null)
throw new Exception("Init settings is only allowed once");
this.settings = settings;
MMapDirectory indexDirectory = new MMapDirectory(stateDir.resolve("index"));
indexDirectory.setUseUnmap(false);
MMapDirectory taxoDirectory = new MMapDirectory(stateDir.resolve("taxo"));
taxoDirectory.setUseUnmap(false);
IndexWriterConfig config = new IndexWriterConfig(settings.analyzer);
config.setSimilarity(settings.similarity);
config.setMergePolicy(settings.getMergePolicy());
this.indexWriter = new IndexWriter(indexDirectory, config);
this.indexWriter.commit();
this.taxoWriter = new DirectoryTaxonomyWriter(taxoDirectory, IndexWriterConfig.OpenMode.CREATE_OR_APPEND, new LruTaxonomyWriterCache(settings.lruTaxonomyWriterCacheSize));
this.taxoWriter.commit();
this.scoreCollectorCache = Collections.synchronizedMap(new LRUMap<KeyNameQuery, ScoreSuperCollector>(50));
this.keyCollectorCache = Collections.synchronizedMap(new LRUMap<KeyNameQuery, FixedBitSet>(50));
this.manager = new SearcherTaxonomyManager(indexDirectory, taxoDirectory, new MerescoSearchFactory(indexDirectory, taxoDirectory, settings));
this.manager.addListener(refreshListener);
}
示例2: create
import org.apache.lucene.store.MMapDirectory; //導入方法依賴的package包/類
@Override
protected Directory create(String path, DirContext dirContext) throws IOException {
MMapDirectory mapDirectory = new MMapDirectory(new File(path), null, maxChunk);
try {
mapDirectory.setUseUnmap(unmapHack);
} catch (Exception e) {
log.warn("Unmap not supported on this JVM, continuing on without setting unmap", e);
}
return mapDirectory;
}
示例3: TermNumerator
import org.apache.lucene.store.MMapDirectory; //導入方法依賴的package包/類
public TermNumerator(Path path) throws IOException {
MMapDirectory taxoDirectory = new MMapDirectory(path);
taxoDirectory.setUseUnmap(false);
taxoWriter = new DirectoryTaxonomyWriter(taxoDirectory, IndexWriterConfig.OpenMode.CREATE_OR_APPEND, new LruTaxonomyWriterCache(100));
}