Class NIOFSDirectory
- All Implemented Interfaces:
Closeable,AutoCloseable
FSDirectory implementation that uses java.nio's FileChannel's
positional read, which allows multiple threads to read from the same file
without synchronizing.
This class only uses FileChannel when reading; writing is achieved with
FSDirectory.FSIndexOutput.
NOTE: NIOFSDirectory is not recommended on Windows because of a bug in how FileChannel.read is implemented in Sun's JRE. Inside of the implementation the position is apparently synchronized. See here for details.
NOTE: Accessing this class either directly or
indirectly from a thread while it's interrupted can close the
underlying file descriptor immediately if at the same time the thread is
blocked on IO. The file descriptor will remain closed and subsequent access
to NIOFSDirectory will throw a ClosedChannelException. If
your application uses either Thread.interrupt() or
Future.cancel(boolean) you should use the legacy RAFDirectory
from the Lucene misc module in favor of NIOFSDirectory.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescription(package private) static final classReads bytes withFileChannel.read(ByteBuffer, long)Nested classes/interfaces inherited from class org.apache.lucene.store.FSDirectory
FSDirectory.FSIndexOutput -
Field Summary
Fields inherited from class org.apache.lucene.store.FSDirectory
directoryFields inherited from class org.apache.lucene.store.BaseDirectory
isOpen, lockFactory -
Constructor Summary
ConstructorsConstructorDescriptionNIOFSDirectory(Path path) Create a new NIOFSDirectory for the named location andFSLockFactory.getDefault().NIOFSDirectory(Path path, LockFactory lockFactory) Create a new NIOFSDirectory for the named location. -
Method Summary
Modifier and TypeMethodDescriptionOpens a stream for reading an existing file.Methods inherited from class org.apache.lucene.store.FSDirectory
close, createOutput, createTempOutput, deleteFile, deletePendingFiles, ensureCanRead, fileLength, fsync, getDirectory, getPendingDeletions, listAll, listAll, open, open, rename, sync, syncMetaData, toStringMethods inherited from class org.apache.lucene.store.BaseDirectory
ensureOpen, obtainLockMethods inherited from class org.apache.lucene.store.Directory
copyFrom, getTempFileName, openChecksumInput
-
Constructor Details
-
NIOFSDirectory
Create a new NIOFSDirectory for the named location. The directory is created at the named location if it does not yet exist.- Parameters:
path- the path of the directorylockFactory- the lock factory to use- Throws:
IOException- if there is a low-level I/O error
-
NIOFSDirectory
Create a new NIOFSDirectory for the named location andFSLockFactory.getDefault(). The directory is created at the named location if it does not yet exist.- Parameters:
path- the path of the directory- Throws:
IOException- if there is a low-level I/O error
-
-
Method Details
-
openInput
Description copied from class:DirectoryOpens a stream for reading an existing file. This method must throw eitherNoSuchFileExceptionorFileNotFoundExceptionifnamepoints to a non-existing file.- Specified by:
openInputin classDirectory- Parameters:
name- the name of an existing file.- Throws:
IOException- in case of I/O error
-