Package | Description |
---|---|
org.apache.lucene.store |
Binary i/o API, used for all index data.
|
org.apache.lucene.util |
Some utility classes.
|
Modifier and Type | Class and Description |
---|---|
class |
FSLockFactory
Base class for file system based locking implementation.
|
class |
NativeFSLockFactory
Implements
LockFactory using native OS file
locks. |
class |
NoLockFactory
Use this
LockFactory to disable locking entirely. |
class |
SimpleFSLockFactory
|
class |
SingleInstanceLockFactory
Implements
LockFactory for a single in-process instance,
meaning all locking will take place through this one instance. |
class |
VerifyingLockFactory
A
LockFactory that wraps another LockFactory and verifies that each lock obtain/release
is "correct" (never results in two processes holding the
lock at the same time). |
Modifier and Type | Field and Description |
---|---|
protected LockFactory |
BaseDirectory.lockFactory
Holds the LockFactory instance (implements locking for
this Directory instance).
|
Modifier and Type | Method and Description |
---|---|
static FSDirectory |
FSDirectory.open(Path path,
LockFactory lockFactory)
Just like
FSDirectory.open(Path) , but allows you to
also specify a custom LockFactory . |
Constructor and Description |
---|
BaseDirectory(LockFactory lockFactory)
Sole constructor.
|
FSDirectory(Path path,
LockFactory lockFactory)
Create a new FSDirectory for the named location (ctor for subclasses).
|
MMapDirectory(Path path,
LockFactory lockFactory)
Create a new MMapDirectory for the named location.
|
MMapDirectory(Path path,
LockFactory lockFactory,
int maxChunkSize)
Create a new MMapDirectory for the named location, specifying the
maximum chunk size used for memory mapping.
|
NIOFSDirectory(Path path,
LockFactory lockFactory)
Create a new NIOFSDirectory for the named location.
|
RAMDirectory(LockFactory lockFactory)
Constructs an empty
Directory with the given LockFactory . |
SimpleFSDirectory(Path path,
LockFactory lockFactory)
Create a new SimpleFSDirectory for the named location.
|
VerifyingLockFactory(LockFactory lf,
InputStream in,
OutputStream out) |
Modifier and Type | Method and Description |
---|---|
static FSDirectory |
CommandLineUtil.newFSDirectory(Class<? extends FSDirectory> clazz,
Path path,
LockFactory lf)
Creates a new specific FSDirectory instance
|
static FSDirectory |
CommandLineUtil.newFSDirectory(String clazzName,
Path path,
LockFactory lf)
Creates a specific FSDirectory instance starting from its class name
|
Copyright © 2000-2017 Apache Software Foundation. All Rights Reserved.