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

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

Introduction

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

Usage

From source file cc.solr.lucene.store.CustomBufferedIndexInput.java

public abstract class CustomBufferedIndexInput extends IndexInput {

    public static final int BUFFER_SIZE = 1024;

    private int bufferSize = BUFFER_SIZE;

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

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

From source file collene.RowIndexInput.java

/**
 * Used to read file data. In a column sense, a file is just a long row of bytes.
 */
public class RowIndexInput extends IndexInput {
    private final String key;
    private final RowReader io;

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

public class CacheIndexInput extends IndexInput {

    private final long _fileLength;
    private final long _fileId;
    private final int _cacheBlockSize;
    private final int _bufferSize;

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

/** Base implementation class for buffered {@link IndexInput}. */
public abstract class ReusedBufferedIndexInput extends IndexInput {

    // START Changed code from normal BufferedIndexInput
    @Override
    public final void close() throws IOException {

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

/**
 * This is just a wrapper for a GridInputStream, I'm not sure of its purpose.
 * @author bnewport
 *
 */
public class GridIndexInput extends IndexInput {

From source file com.gemstone.gemfire.cache.lucene.internal.directory.FileIndexInput.java

final class FileIndexInput extends IndexInput {
    private final File file;
    SeekableInputStream in;
    private long position;

    //Used for slice operations

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

/**
 * An <code>IndexInput</code> implementation that will read all the relevant
 * data from the database when created, and will cache it untill it is closed.
 * <p/>
 * Used for small file entries in the database like the segments file.
 *

From source file com.nearinfinity.blur.store.CustomBufferedIndexInput.java

public abstract class CustomBufferedIndexInput extends IndexInput {

    public static final int BUFFER_SIZE = 1024;

    private int bufferSize = BUFFER_SIZE;

From source file com.senseidb.clue.util.CustomBufferedIndexInput.java

/**
 * @lucene.experimental
 */
public abstract class CustomBufferedIndexInput extends IndexInput {

    private static final String READ_PAST_EOF = "read past EOF";