本文整理汇总了Java中org.apache.lucene.codecs.FieldInfosFormat类的典型用法代码示例。如果您正苦于以下问题:Java FieldInfosFormat类的具体用法?Java FieldInfosFormat怎么用?Java FieldInfosFormat使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
FieldInfosFormat类属于org.apache.lucene.codecs包,在下文中一共展示了FieldInfosFormat类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: writeFieldInfosGen
import org.apache.lucene.codecs.FieldInfosFormat; //导入依赖的package包/类
private Set<String> writeFieldInfosGen(FieldInfos fieldInfos, Directory dir, DocValuesFormat dvFormat,
FieldInfosFormat infosFormat) throws IOException {
final long nextFieldInfosGen = info.getNextFieldInfosGen();
final String segmentSuffix = Long.toString(nextFieldInfosGen, Character.MAX_RADIX);
// we write approximately that many bytes (based on Lucene46DVF):
// HEADER + FOOTER: 40
// 90 bytes per-field (over estimating long name and attributes map)
final long estInfosSize = 40 + 90 * fieldInfos.size();
final IOContext infosContext = new IOContext(new FlushInfo(info.info.getDocCount(), estInfosSize));
// separately also track which files were created for this gen
final TrackingDirectoryWrapper trackingDir = new TrackingDirectoryWrapper(dir);
infosFormat.getFieldInfosWriter().write(trackingDir, info.info.name, segmentSuffix, fieldInfos, infosContext);
info.advanceFieldInfosGen();
return trackingDir.getCreatedFiles();
}
示例2: fieldInfosFormat
import org.apache.lucene.codecs.FieldInfosFormat; //导入依赖的package包/类
@Override
public FieldInfosFormat fieldInfosFormat() {
if (LuceneTestCase.OLD_FORMAT_IMPERSONATION_IS_ACTIVE) {
return fieldInfos;
} else {
return super.fieldInfosFormat();
}
}
示例3: fieldInfosFormat
import org.apache.lucene.codecs.FieldInfosFormat; //导入依赖的package包/类
@Override
public FieldInfosFormat fieldInfosFormat() {
if (LuceneTestCase.PREFLEX_IMPERSONATION_IS_ACTIVE) {
return fieldInfos;
} else {
return super.fieldInfosFormat();
}
}
示例4: fieldInfosFormat
import org.apache.lucene.codecs.FieldInfosFormat; //导入依赖的package包/类
@Override
public FieldInfosFormat fieldInfosFormat() {
return fieldInfosFormat;
}
示例5: fieldInfosFormat
import org.apache.lucene.codecs.FieldInfosFormat; //导入依赖的package包/类
@Override
public final FieldInfosFormat fieldInfosFormat() {
return fieldInfosFormat;
}
示例6: fieldInfosFormat
import org.apache.lucene.codecs.FieldInfosFormat; //导入依赖的package包/类
@Override
public FieldInfosFormat fieldInfosFormat() {
return fieldInfos;
}
示例7: fieldInfosFormat
import org.apache.lucene.codecs.FieldInfosFormat; //导入依赖的package包/类
@Override
public FieldInfosFormat fieldInfosFormat() {
return new CrankyFieldInfosFormat(delegate.fieldInfosFormat(), random);
}
示例8: CrankyFieldInfosFormat
import org.apache.lucene.codecs.FieldInfosFormat; //导入依赖的package包/类
CrankyFieldInfosFormat(FieldInfosFormat delegate, Random random) {
this.delegate = delegate;
this.random = random;
}