Example usage for org.apache.lucene.store IndexOutput subclass-usage

List of usage examples for org.apache.lucene.store IndexOutput subclass-usage

Introduction

In this page you can find the example usage for org.apache.lucene.store IndexOutput subclass-usage.

Usage

From source file cc.solr.lucene.hdfsro.NullIndexOutput.java

public class NullIndexOutput extends IndexOutput {

    private long _pos;
    private long _length;

    @Override

From source file cc.solr.lucene.store.hdfs.NullIndexOutput.java

public class NullIndexOutput extends IndexOutput {

    private long _pos;
    private long _length;

    @Override

From source file cn.codepub.redis.directory.io.RedisOutputStream.java

/**
 * <p>
 * Created by wangxu on 16/10/27 18:11.
 * </p>
 * <p>
 * Description: TODO

From source file collene.RowIndexOutput.java

public class RowIndexOutput extends IndexOutput {
    private final String key;
    private volatile long pointer = 0;
    private final CRC32 crc = new CRC32();
    private RowWriter io;

From source file com.bah.lucene.blockcache_v2.CacheIndexOutput.java

public class CacheIndexOutput extends IndexOutput {

    private final IndexOutput _indexOutput;
    private final Cache _cache;
    private final String _fileName;
    private final CacheDirectory _directory;

From source file com.bah.lucene.buffer.ReusedBufferedIndexOutput.java

public abstract class ReusedBufferedIndexOutput extends IndexOutput {

    public static final int BUFFER_SIZE = 1024;

    private int bufferSize = BUFFER_SIZE;

From source file com.devwebsphere.wxslucene.GridIndexOutput.java

/**
 * This seems to just wrapper GridOutputStream. Doesn't seem to add
 * a lot of value.
 * @author bnewport
 *
 */

From source file com.github.lucene.store.jdbc.index.RAMAndFileJdbcIndexOutput.java

/**
 * An <code>IndexOutput</code> implementation that initially writes the data to
 * a memory buffer. Once it exceeds the configured threshold (
 * {@link #INDEX_OUTPUT_THRESHOLD_SETTING}, will start working with a temporary
 * file, releasing the previous buffer.
 *

From source file com.svenjacobs.lugaene.GaeIndexOutput.java

/**
 * Output from a {@link GaeFileEntity}
 *
 * @author Sven Jacobs
 */
public class GaeIndexOutput extends IndexOutput {

From source file hdfs.NullIndexOutput.java

public class NullIndexOutput extends IndexOutput {

    private long pos;
    private long length;

    @Override