List of usage examples for org.apache.lucene.codecs FilterCodec subclass-usage
From source file com.foundationdb.lucene.FDBCodec.java
public final class FDBCodec extends FilterCodec { static final String CONFIG_PROP_NAME = "FDBCodec.formats"; static final String CONFIG_VALUE_ALL = "ALL"; static final String CONFIG_VALUE_NONE = "NONE"; static final String CONFIG_VALUE_DEFAULT = "DEFAULT";
From source file com.lucenetutorial.apps.CompressingCodec.java
/** * * @author prudhvi */ public class CompressingCodec extends FilterCodec {
From source file com.rocana.lucene.codec.v1.RocanaSearchCodecV1.java
/**
* Custom codec that speeds up opening Searchers.
*
* We don't need Lucene's entire-file checksum since HDFS already
* uses checksums for HDFS blocks. Eliminating Lucene's checksum for
* the entire file improves Searcher open performance.
From source file com.vmware.xenon.services.common.LuceneCodecWithFixes.java
/** * This class takes care of lucene bugs related to FieldInfos. FieldInfo instances are cached and reused, * while FieldInfos instances are just cleared of their internal TreeMap overhead. */ class LuceneCodecWithFixes extends FilterCodec { private final FieldInfosFormat fieldInfosFormat;
From source file FlexSearch.Java.FlexCodecBase.java
public abstract class FlexCodecBase extends FilterCodec { private static final PostingsFormat postingsFormat = new FlexPerFieldPostingsFormat(); public FlexCodecBase(String codecName, Codec wrappingCodec) { super(codecName, wrappingCodec);
From source file net.semanticmetadata.lire.indexers.LireCustomCodec.java
/**
* Custom stored fields compression configuration. Smaller chunk size and faster compression routine.
* Code based on the suggestions of Savia Beson.
* <br/>
* Note that the class net.semanticmetadata.lire.indexing.LireCustomCodec has to be registered in
* META-INF/services, in a file called org.apache.lucene.codecs.Codec
From source file net.semanticmetadata.lire.indexing.LireCustomCodec.java
/**
* Custom stored fields compression configuration. Smaller chunk size and faster compression routine.
* Code based on the suggestions of Savia Beson.
* <br/>
* Note that the class net.semanticmetadata.lire.indexing.LireCustomCodec has to be registered in
* META-INF/services, in a file called org.apache.lucene.codecs.Codec
From source file org.apache.jackrabbit.oak.plugins.index.lucene.OakCodec.java
/** * Oak specific {@link org.apache.lucene.codecs.Codec}. * * It simply mimics {@link org.apache.lucene.codecs.lucene46.Lucene46Codec} but with uncompressed {@link org.apache.lucene.codecs.StoredFieldsFormat}. */ public class OakCodec extends FilterCodec {
From source file org.apache.solr.codecs.onsql.ONSQLCodec.java
public class ONSQLCodec extends FilterCodec { private transient static Logger log = LoggerFactory.getLogger(ONSQLCodec.class); private ONSQLStoredFieldsFormat onsqlstoredFields; public ONSQLCodec() { super("ONSQLCodec", new Lucene410Codec());
From source file org.exist.xquery.modules.mpeg7.net.semanticmetadata.lire.indexing.LireCustomCodec.java
/**
* Custom stored fields compression configuration. Smaller chunk size and faster compression routine.
* Code based on the suggestions of Savia Beson.
* <br/>
* Note that the class net.semanticmetadata.lire.indexing.LireCustomCodec has to be registered in
* META-INF/services, in a file called org.apache.lucene.codecs.Codec