Package | Description |
---|---|
org.apache.lucene.store |
Binary i/o API, used for all index data.
|
org.apache.lucene.store.db |
Berkeley DB 4.3 based implementation of
Directory . |
org.apache.lucene.store.je |
Berkeley DB Java Edition based implementation of
Directory . |
Modifier and Type | Class and Description |
---|---|
class |
BufferedIndexOutput
Base implementation class for buffered
IndexOutput . |
class |
ChecksumIndexOutput
Writes bytes through to a primary IndexOutput, computing
checksum.
|
protected static class |
FSDirectory.FSIndexOutput
Deprecated.
Use SimpleFSDirectory.SimpleFSIndexOutput instead
|
class |
RAMOutputStream
A memory-resident
IndexOutput implementation. |
protected static class |
SimpleFSDirectory.SimpleFSIndexOutput |
Modifier and Type | Method and Description |
---|---|
IndexOutput |
FileSwitchDirectory.createOutput(java.lang.String name) |
abstract IndexOutput |
Directory.createOutput(java.lang.String name)
Creates a new, empty file in the directory with the given name.
|
IndexOutput |
RAMDirectory.createOutput(java.lang.String name)
Creates a new, empty file in the directory with the given name.
|
IndexOutput |
MMapDirectory.createOutput(java.lang.String name)
Creates an IndexOutput for the file with the given name.
|
IndexOutput |
SimpleFSDirectory.createOutput(java.lang.String name)
Creates an IndexOutput for the file with the given name.
|
IndexOutput |
FSDirectory.createOutput(java.lang.String name)
Creates an IndexOutput for the file with the given name.
|
IndexOutput |
NIOFSDirectory.createOutput(java.lang.String name)
Creates an IndexOutput for the file with the given name.
|
Modifier and Type | Method and Description |
---|---|
void |
RAMOutputStream.writeTo(IndexOutput out)
Copy the current contents of this buffer to the named output.
|
Constructor and Description |
---|
ChecksumIndexOutput(IndexOutput main) |
Modifier and Type | Class and Description |
---|---|
class |
DbIndexOutput |
Modifier and Type | Method and Description |
---|---|
IndexOutput |
DbDirectory.createOutput(java.lang.String name) |
Modifier and Type | Class and Description |
---|---|
class |
JEIndexOutput
Port of Andi Vajda's DbDirectory to Java Edition of Berkeley Database
|
Modifier and Type | Method and Description |
---|---|
IndexOutput |
JEDirectory.createOutput(java.lang.String name) |
Copyright © 2000-2018 Apache Software Foundation. All Rights Reserved.