class |
ByteBuffersDirectory |
A ByteBuffer -based Directory implementation that
can be used to store index files on the heap.
|
class |
FSDirectory |
Base class for Directory implementations that store index
files in the file system.
|
class |
MMapDirectory |
|
class |
NativeUnixDirectory |
A Directory implementation for all Unixes that uses
DIRECT I/O to bypass OS level IO caching during
merging.
|
class |
NIOFSDirectory |
An FSDirectory implementation that uses java.nio's FileChannel's
positional read, which allows multiple threads to read from the same file
without synchronizing.
|
class |
RAFDirectory |
A straightforward implementation of FSDirectory
using java.io.RandomAccessFile.
|
class |
RAMDirectory |
Deprecated.
|
class |
SimpleFSDirectory |
A straightforward implementation of FSDirectory
using Files.newByteChannel(Path, java.nio.file.OpenOption...) .
|
class |
WindowsDirectory |
Native Directory implementation for Microsoft Windows.
|