MMapDirectory. It will be removed in future versions
of Lucene.@Deprecated public class RAMDirectory extends BaseDirectory implements Accountable
Directory implementation. Locking
implementation is by default the SingleInstanceLockFactory.
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.
| Modifier and Type | Field and Description |
|---|---|
protected java.util.Map<java.lang.String,RAMFile> |
fileMap
Deprecated.
|
protected java.util.concurrent.atomic.AtomicLong |
sizeInBytes
Deprecated.
|
isOpen, lockFactory| Constructor and Description |
|---|
RAMDirectory()
Deprecated.
Constructs an empty
Directory. |
RAMDirectory(FSDirectory dir,
IOContext context)
Deprecated.
Creates a new
RAMDirectory instance from a different
Directory implementation. |
RAMDirectory(LockFactory lockFactory)
Deprecated.
Constructs an empty
Directory with the given LockFactory. |
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Deprecated.
Closes the store to future operations, releasing associated memory.
|
IndexOutput |
createOutput(java.lang.String name,
IOContext context)
Deprecated.
Creates a new, empty file in the directory and returns an
IndexOutput
instance for appending data to this file. |
IndexOutput |
createTempOutput(java.lang.String prefix,
java.lang.String suffix,
IOContext context)
Deprecated.
Creates a new, empty, temporary file in the directory and returns an
IndexOutput
instance for appending data to this file. |
void |
deleteFile(java.lang.String name)
Deprecated.
Removes an existing file in the directory.
|
long |
fileLength(java.lang.String name)
Deprecated.
Returns the length in bytes of a file in the directory.
|
boolean |
fileNameExists(java.lang.String name)
Deprecated.
|
java.util.Collection<Accountable> |
getChildResources()
Deprecated.
Returns nested resources of this class.
|
java.lang.String[] |
listAll()
Deprecated.
Returns names of all files stored in this directory.
|
protected RAMFile |
newRAMFile()
Deprecated.
Returns a new
RAMFile for storing data. |
IndexInput |
openInput(java.lang.String name,
IOContext context)
Deprecated.
Returns a stream reading an existing file.
|
long |
ramBytesUsed()
Deprecated.
Return total size in bytes of all files in this directory.
|
void |
rename(java.lang.String source,
java.lang.String dest)
Deprecated.
Renames
source file to dest file where
dest must not already exist in the directory. |
void |
sync(java.util.Collection<java.lang.String> names)
Deprecated.
Ensures that any writes to these files are moved to
stable storage (made durable).
|
void |
syncMetaData()
Deprecated.
Ensures that directory metadata, such as recent file renames, are moved to stable
storage.
|
ensureOpen, obtainLock, toStringcopyFrom, getPendingDeletions, openChecksumInputprotected final java.util.Map<java.lang.String,RAMFile> fileMap
protected final java.util.concurrent.atomic.AtomicLong sizeInBytes
public RAMDirectory()
Directory.public RAMDirectory(LockFactory lockFactory)
Directory with the given LockFactory.public RAMDirectory(FSDirectory dir, IOContext context) throws java.io.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 valuejava.io.IOException - if an error occurspublic final java.lang.String[] listAll()
DirectoryString.compareTo(java.lang.String)) order.public final boolean fileNameExists(java.lang.String name)
public final long fileLength(java.lang.String name)
throws java.io.IOException
fileLength in class Directoryname - the name of an existing file.java.io.IOException - if the file does not existpublic final long ramBytesUsed()
ramBytesUsed in interface Accountablepublic java.util.Collection<Accountable> getChildResources()
AccountablegetChildResources in interface AccountableAccountablespublic void deleteFile(java.lang.String name)
throws java.io.IOException
DirectoryNoSuchFileException or FileNotFoundException
if name points to a non-existing file.deleteFile in class Directoryname - the name of an existing file.java.io.IOException - in case of I/O errorpublic IndexOutput createOutput(java.lang.String name, IOContext context) throws java.io.IOException
DirectoryIndexOutput
instance for appending data to this file.
This method must throw FileAlreadyExistsException if the file
already exists.createOutput in class Directoryname - the name of the file to create.java.io.IOException - in case of I/O errorpublic IndexOutput createTempOutput(java.lang.String prefix, java.lang.String suffix, IOContext context) throws java.io.IOException
DirectoryIndexOutput
instance for appending data to this file.
The temporary file name (accessible via IndexOutput.getName()) will start with
prefix, end with suffix and have a reserved file extension .tmp.createTempOutput in class Directoryjava.io.IOExceptionprotected 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(java.util.Collection<java.lang.String> names)
throws java.io.IOException
Directorysync in class Directoryjava.io.IOExceptionDirectory.syncMetaData()public void rename(java.lang.String source,
java.lang.String dest)
throws java.io.IOException
Directorysource file to dest file where
dest must not already exist in the directory.
It is permitted for this operation to not be truly atomic, for example
both source and dest can be visible temporarily in Directory.listAll().
However, the implementation of this method must ensure the content of
dest appears as the entire source atomically. So once
dest is visible for readers, the entire content of previous source
is visible.
This method is used by IndexWriter to publish commits.public void syncMetaData()
throws java.io.IOException
DirectorysyncMetaData in class Directoryjava.io.IOExceptionDirectory.sync(Collection)public IndexInput openInput(java.lang.String name, IOContext context) throws java.io.IOException
Copyright © 2000–2025 The Apache Software Foundation. All rights reserved.