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

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

Introduction

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

Usage

From source file cn.codepub.redis.directory.RedisDirectory.java

/**
 * <p>
 * Created by wangxu on 16/10/27 17:27.
 * </p>
 * <p>
 * Description:

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

/**
 * An implementation of Directory that stores data in geode regions.
 * 
 * Directory is an interface to file/RAM storage for lucene. This class uses
 * the {@link FileSystem} class to store the data in the provided geode
 * regions.

From source file hdfs.HdfsDirectory.java

public class HdfsDirectory extends BaseDirectory {
    public static Logger LOG = LoggerFactory.getLogger(HdfsDirectory.class);

    public static final int BUFFER_SIZE = 8192;

    private static final String LF_EXT = ".lf";

From source file org.apache.geode.cache.lucene.internal.directory.RegionDirectory.java

/**
 * An implementation of Directory that stores data in geode regions.
 * 
 * Directory is an interface to file/RAM storage for lucene. This class uses the {@link FileSystem}
 * class to store the data in the provided geode regions.
 */

From source file org.apache.mahout.text.ReadOnlyFileSystemDirectory.java

/**
 * This class implements a read-only Lucene Directory on top of a general FileSystem.
 * Currently it does not support locking.
 * <p/>
 * // TODO: Rename to FileSystemReadOnlyDirectory
 */

From source file org.apache.solr.store.hdfs.HdfsDirectory.java

public class HdfsDirectory extends BaseDirectory {
    public static Logger LOG = LoggerFactory.getLogger(HdfsDirectory.class);

    public static final int BUFFER_SIZE = 8192;

    private static final String LF_EXT = ".lf";

From source file org.elasticsearch.index.store.DistributorDirectory.java

/**
 * A directory implementation that uses the Elasticsearch {@link Distributor} abstraction to distribute
 * files across multiple data directories.
 */
public final class DistributorDirectory extends BaseDirectory {