Class NIOFSDirectory
- java.lang.Object
-
- org.apache.lucene.store.Directory
-
- org.apache.lucene.store.BaseDirectory
-
- org.apache.lucene.store.FSDirectory
-
- org.apache.lucene.store.NIOFSDirectory
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
public class NIOFSDirectory extends FSDirectory
AnFSDirectory
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 aClosedChannelException
. If your application uses eitherThread.interrupt()
orFuture.cancel(boolean)
you should useSimpleFSDirectory
in favor ofNIOFSDirectory
.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.lucene.store.Directory
Directory.IndexInputSlicer
-
-
Field Summary
-
Fields inherited from class org.apache.lucene.store.FSDirectory
DEFAULT_READ_CHUNK_SIZE
-
-
Constructor Summary
Constructors Constructor Description NIOFSDirectory(java.io.File path)
Create a new NIOFSDirectory for the named location andNativeFSLockFactory
.NIOFSDirectory(java.io.File path, LockFactory lockFactory)
Create a new NIOFSDirectory for the named location.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Directory.IndexInputSlicer
createSlicer(java.lang.String name, IOContext context)
Creates anDirectory.IndexInputSlicer
for the given file name.IndexInput
openInput(java.lang.String name, IOContext context)
Creates an IndexInput for the file with the given name.-
Methods inherited from class org.apache.lucene.store.FSDirectory
close, createOutput, deleteFile, fileExists, fileLength, getDirectory, getLockID, getReadChunkSize, listAll, listAll, open, open, setLockFactory, setReadChunkSize, sync, toString
-
Methods inherited from class org.apache.lucene.store.BaseDirectory
clearLock, getLockFactory, makeLock
-
-
-
-
Constructor Detail
-
NIOFSDirectory
public NIOFSDirectory(java.io.File path, LockFactory lockFactory) throws java.io.IOException
Create a new NIOFSDirectory for the named location.- Parameters:
path
- the path of the directorylockFactory
- the lock factory to use, or null for the default (NativeFSLockFactory
);- Throws:
java.io.IOException
- if there is a low-level I/O error
-
NIOFSDirectory
public NIOFSDirectory(java.io.File path) throws java.io.IOException
Create a new NIOFSDirectory for the named location andNativeFSLockFactory
.- Parameters:
path
- the path of the directory- Throws:
java.io.IOException
- if there is a low-level I/O error
-
-
Method Detail
-
openInput
public IndexInput openInput(java.lang.String name, IOContext context) throws java.io.IOException
Creates an IndexInput for the file with the given name.
-
createSlicer
public Directory.IndexInputSlicer createSlicer(java.lang.String name, IOContext context) throws java.io.IOException
Description copied from class:Directory
Creates anDirectory.IndexInputSlicer
for the given file name. IndexInputSlicer allows otherDirectory
implementations to efficiently open one or more slicedIndexInput
instances from a single file handle. The underlying file handle is kept open until theDirectory.IndexInputSlicer
is closed.- Must throw
FileNotFoundException
if the file does not exist (notjava.nio.file.NoSuchFileException
of Java 7).- Overrides:
createSlicer
in classDirectory
- Throws:
java.io.IOException
- if anIOException
occurs
- Must throw
-
-