|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.apache.lucene.store.Directory
org.apache.lucene.store.BaseDirectory
org.apache.lucene.store.RAMDirectory
public class RAMDirectory
A memory-resident Directory implementation. Locking
implementation is by default the SingleInstanceLockFactory
but can be changed with BaseDirectory.setLockFactory(org.apache.lucene.store.LockFactory).
Warning: This class is not intended to work with huge
indexes. Everything beyond several hundred megabytes will waste
resources (GC cycles), because it uses an internal buffer size
of 1024 bytes, producing millions of byte[1024] arrays.
This class is optimized for small memory-resident indexes.
It also has bad concurrency on multithreaded environments.
It is recommended to materialize large indexes on disk and use
MMapDirectory, which is a high-performance directory
implementation working directly on the file system cache of the
operating system, so copying data to Java heap space is not useful.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class org.apache.lucene.store.Directory |
|---|
Directory.IndexInputSlicer |
| Field Summary | |
|---|---|
protected Map<String,RAMFile> |
fileMap
|
protected AtomicLong |
sizeInBytes
|
| Fields inherited from class org.apache.lucene.store.BaseDirectory |
|---|
isOpen, lockFactory |
| Constructor Summary | |
|---|---|
RAMDirectory()
Constructs an empty Directory. |
|
RAMDirectory(Directory dir,
IOContext context)
Creates a new RAMDirectory instance from a different
Directory implementation. |
|
| Method Summary | |
|---|---|
void |
close()
Closes the store to future operations, releasing associated memory. |
IndexOutput |
createOutput(String name,
IOContext context)
Creates a new, empty file in the directory with the given name. |
void |
deleteFile(String name)
Removes an existing file in the directory. |
boolean |
fileExists(String name)
Returns true iff the named file exists in this directory. |
long |
fileLength(String name)
Returns the length in bytes of a file in the directory. |
String |
getLockID()
Return a string identifier that uniquely differentiates this Directory instance from other Directory instances. |
String[] |
listAll()
Returns an array of strings, one for each file in the directory. |
protected RAMFile |
newRAMFile()
Returns a new RAMFile for storing data. |
IndexInput |
openInput(String name,
IOContext context)
Returns a stream reading an existing file. |
long |
sizeInBytes()
Return total size in bytes of all files in this directory. |
void |
sync(Collection<String> names)
Ensure that any writes to these files are moved to stable storage. |
| Methods inherited from class org.apache.lucene.store.BaseDirectory |
|---|
clearLock, ensureOpen, getLockFactory, makeLock, setLockFactory |
| Methods inherited from class org.apache.lucene.store.Directory |
|---|
copy, createSlicer, toString |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
protected final Map<String,RAMFile> fileMap
protected final AtomicLong sizeInBytes
| Constructor Detail |
|---|
public RAMDirectory()
Directory.
public RAMDirectory(Directory dir,
IOContext context)
throws IOException
RAMDirectory instance from a different
Directory implementation. This can be used to load
a disk-based index into memory.
Warning: This class is not intended to work with huge
indexes. Everything beyond several hundred megabytes will waste
resources (GC cycles), because it uses an internal buffer size
of 1024 bytes, producing millions of byte[1024] arrays.
This class is optimized for small memory-resident indexes.
It also has bad concurrency on multithreaded environments.
For disk-based indexes it is recommended to use
MMapDirectory, which is a high-performance directory
implementation working directly on the file system cache of the
operating system, so copying data to Java heap space is not useful.
Note that the resulting RAMDirectory instance is fully
independent from the original Directory (it is a
complete copy). Any subsequent changes to the
original Directory will not be visible in the
RAMDirectory instance.
dir - a Directory value
IOException - if an error occurs| Method Detail |
|---|
public String getLockID()
Directory
getLockID in class Directorypublic final String[] listAll()
Directory
listAll in class Directorypublic final boolean fileExists(String name)
fileExists in class Directory
public final long fileLength(String name)
throws IOException
fileLength in class Directoryname - the name of the file for which to return the length.
IOException - if the file does not existpublic final long sizeInBytes()
public void deleteFile(String name)
throws IOException
deleteFile in class DirectoryIOException - if the file does not exist
public IndexOutput createOutput(String name,
IOContext context)
throws IOException
createOutput in class DirectoryIOExceptionprotected RAMFile newRAMFile()
RAMFile for storing data. This method can be
overridden to return different RAMFile impls, that e.g. override
RAMFile.newBuffer(int).
public void sync(Collection<String> names)
throws IOException
Directory
sync in class DirectoryIOException
public IndexInput openInput(String name,
IOContext context)
throws IOException
openInput in class DirectoryIOExceptionpublic void close()
close in interface Closeableclose in class Directory
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||