当前位置: 首页>>代码示例>>Java>>正文


Java FieldInfosFormat类代码示例

本文整理汇总了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();
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:16,代码来源:ReadersAndUpdates.java

示例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();
  }
}
 
开发者ID:europeana,项目名称:search,代码行数:9,代码来源:PreFlexRWCodec.java

示例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();
  }
}
 
开发者ID:pkarmstr,项目名称:NYBC,代码行数:9,代码来源:PreFlexRWCodec.java

示例4: fieldInfosFormat

import org.apache.lucene.codecs.FieldInfosFormat; //导入依赖的package包/类
@Override
public FieldInfosFormat fieldInfosFormat() {
  return fieldInfosFormat;
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:5,代码来源:Lucene40Codec.java

示例5: fieldInfosFormat

import org.apache.lucene.codecs.FieldInfosFormat; //导入依赖的package包/类
@Override
public final FieldInfosFormat fieldInfosFormat() {
  return fieldInfosFormat;
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:5,代码来源:Lucene46Codec.java

示例6: fieldInfosFormat

import org.apache.lucene.codecs.FieldInfosFormat; //导入依赖的package包/类
@Override
public FieldInfosFormat fieldInfosFormat() {
  return fieldInfos;
}
 
开发者ID:europeana,项目名称:search,代码行数:5,代码来源:Lucene40RWCodec.java

示例7: fieldInfosFormat

import org.apache.lucene.codecs.FieldInfosFormat; //导入依赖的package包/类
@Override
public FieldInfosFormat fieldInfosFormat() {
  return new CrankyFieldInfosFormat(delegate.fieldInfosFormat(), random);
}
 
开发者ID:europeana,项目名称:search,代码行数:5,代码来源:CrankyCodec.java

示例8: CrankyFieldInfosFormat

import org.apache.lucene.codecs.FieldInfosFormat; //导入依赖的package包/类
CrankyFieldInfosFormat(FieldInfosFormat delegate, Random random) {
  this.delegate = delegate;
  this.random = random;
}
 
开发者ID:europeana,项目名称:search,代码行数:5,代码来源:CrankyFieldInfosFormat.java


注:本文中的org.apache.lucene.codecs.FieldInfosFormat类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。