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

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

Introduction

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

Usage

From source file cc.solr.lucene.store.lock.BlurLockFactory.java

public class BlurLockFactory extends LockFactory {

    private final Configuration _configuration;
    private final FileSystem _fileSystem;
    private final String _baseLockKey;
    private byte[] _lockKey;

From source file cc.solr.lucene.store.lock.HDFSLockFactory.java

public class HDFSLockFactory extends LockFactory {

    private final Configuration _configuration;
    private final FileSystem _fileSystem;
    private final String _baseLockKey;
    private byte[] _lockKey;

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

/**
 * <p>
 * Created by wangxu on 16/10/27 18:11.
 * </p>
 * <p>
 * Description: Mostly copied from NativeFSLockFactory. Using Java NIO to implements file lock, on certain NFS environments the

From source file com.bah.lucene.hdfs.BlurLockFactory.java

public class BlurLockFactory extends LockFactory {

    private static final Log LOG = LogFactory.getLog(BlurLockFactory.class);

    private final Configuration _configuration;
    private final FileSystem _fileSystem;

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

public class WXSLockFactory extends LockFactory {
    WXSUtils client;
    WXSMap<String, Boolean> lockMap;

    public WXSLockFactory(WXSUtils client) {
        this.client = client;

From source file com.nearinfinity.mele.zookeeper.ZookeeperLockFactory.java

/** @author Aaron McCurry (amccurry@nearinfinity.com) */
public class ZookeeperLockFactory extends LockFactory {

    private final static Log LOG = LogFactory.getLog(ZookeeperLockFactory.class);
    private ZooKeeper zk;
    private String indexLockPath;

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

/**
 * Factory that uses {@link GaeLockEntity} locks
 *
 * @author Sven Jacobs
 */
class GaeLockFactory extends LockFactory {

From source file hdfs.HdfsLockFactory.java

public class HdfsLockFactory extends LockFactory {

    private Path lockPath;
    private Configuration configuration;

    public HdfsLockFactory(Path lockPath, Configuration configuration) {

From source file org.apache.blur.index.OptimisticLockFactory.java

public class OptimisticLockFactory extends LockFactory {

    private final Configuration _configuration;
    private final FileSystem _fileSystem;
    private final String _baseLockKey;
    private byte[] _lockKey;

From source file org.apache.blur.store.hdfs.BlurLockFactory.java

public class BlurLockFactory extends LockFactory {

    private static final Log LOG = LogFactory.getLog(BlurLockFactory.class);

    private final Configuration _configuration;
    private final String _baseLockKey;