本文整理汇总了Java中org.apache.lucene.facet.taxonomy.writercache.lru.LruTaxonomyWriterCache类的典型用法代码示例。如果您正苦于以下问题:Java LruTaxonomyWriterCache类的具体用法?Java LruTaxonomyWriterCache怎么用?Java LruTaxonomyWriterCache使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
LruTaxonomyWriterCache类属于org.apache.lucene.facet.taxonomy.writercache.lru包,在下文中一共展示了LruTaxonomyWriterCache类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: newTaxoWriterCache
import org.apache.lucene.facet.taxonomy.writercache.lru.LruTaxonomyWriterCache; //导入依赖的package包/类
static TaxonomyWriterCache newTaxoWriterCache(int ndocs) {
final double d = random().nextDouble();
if (d < 0.7) {
// this is the fastest, yet most memory consuming
return new Cl2oTaxonomyWriterCache(1024, 0.15f, 3);
} else if (TEST_NIGHTLY && d > 0.98) {
// this is the slowest, but tests the writer concurrency when no caching is done.
// only pick it during NIGHTLY tests, and even then, with very low chances.
return NO_OP_CACHE;
} else {
// this is slower than CL2O, but less memory consuming, and exercises finding categories on disk too.
return new LruTaxonomyWriterCache(ndocs / 10);
}
}