Package | Description |
---|---|
org.apache.lucene.index |
Code to maintain and access indices.
|
org.apache.lucene.search |
Code to search indices.
|
org.apache.lucene.store |
Binary i/o API, used for all index data.
|
org.apache.lucene.util |
Some utility classes.
|
Modifier and Type | Field and Description |
---|---|
Directory |
CheckIndex.Status.dir
Directory index is in.
|
protected Directory |
ConcurrentMergeScheduler.dir |
protected Directory |
IndexModifier.directory
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Directory |
IndexReader.directory()
Returns the directory associated with this index.
|
Directory |
FilterIndexReader.directory() |
Directory |
IndexWriter.getDirectory()
Returns the Directory used by this index.
|
abstract Directory |
IndexCommit.getDirectory()
Returns the
Directory for the index. |
Directory |
MergePolicy.MergeException.getDirectory()
Returns the
Directory of the index that hit
the exception. |
Modifier and Type | Method and Description |
---|---|
void |
IndexWriter.addIndexes(Directory[] dirs)
Deprecated.
Use
IndexWriter.addIndexesNoOptimize(org.apache.lucene.store.Directory[]) instead,
then separately call IndexWriter.optimize() afterwards if
you need to. |
void |
IndexWriter.addIndexesNoOptimize(Directory[] dirs)
Merges all segments from an array of indexes into this
index.
|
static boolean |
CheckIndex.check(Directory dir,
boolean doFix)
Deprecated.
Please instantiate a CheckIndex and then use
CheckIndex.checkIndex() instead |
static boolean |
CheckIndex.check(Directory dir,
boolean doFix,
List onlySegments)
Deprecated.
Please instantiate a CheckIndex and then use
CheckIndex.checkIndex(List) instead |
static long |
IndexReader.getCurrentVersion(Directory directory)
Reads version number from segments files.
|
static boolean |
IndexReader.indexExists(Directory directory)
Returns
true if an index exists at the specified directory. |
protected void |
IndexModifier.init(Directory directory,
Analyzer analyzer,
boolean create)
Deprecated.
Initialize an IndexWriter.
|
static boolean |
IndexReader.isLocked(Directory directory)
Deprecated.
Please use
IndexWriter.isLocked(Directory) instead |
static boolean |
IndexWriter.isLocked(Directory directory)
Returns
true iff the index in the named directory is
currently locked. |
static long |
IndexReader.lastModified(Directory directory2)
Returns the time the index in the named directory was last modified.
|
static Collection |
IndexReader.listCommits(Directory dir)
Returns all commit points that exist in the Directory.
|
static IndexReader |
IndexReader.open(Directory directory)
Returns a read/write IndexReader reading the index in
the given Directory.
|
static IndexReader |
IndexReader.open(Directory directory,
boolean readOnly)
Returns a read/write or read only IndexReader reading the index in the given Directory.
|
static IndexReader |
IndexReader.open(Directory directory,
IndexDeletionPolicy deletionPolicy)
Expert: returns a read/write IndexReader reading the index in the given
Directory, with a custom
IndexDeletionPolicy . |
static IndexReader |
IndexReader.open(Directory directory,
IndexDeletionPolicy deletionPolicy,
boolean readOnly)
Expert: returns a read/write or read only IndexReader reading the index in the given
Directory, with a custom
IndexDeletionPolicy . |
String |
MergePolicy.MergeSpecification.segString(Directory dir) |
static void |
IndexReader.unlock(Directory directory)
Deprecated.
Please use
IndexWriter.unlock(Directory) instead |
static void |
IndexWriter.unlock(Directory directory)
Forcibly unlocks the index in the named directory.
|
Constructor and Description |
---|
CheckIndex(Directory dir)
Create a new CheckIndex on the directory.
|
IndexModifier(Directory directory,
Analyzer analyzer,
boolean create)
Deprecated.
Open an index with write access.
|
IndexReader(Directory directory)
Deprecated.
- use IndexReader()
|
IndexWriter(Directory d,
Analyzer a)
Deprecated.
This constructor will be removed in the 3.0 release.
Use
IndexWriter.IndexWriter(Directory,Analyzer,MaxFieldLength)
instead, and call IndexWriter.commit() when needed. |
IndexWriter(Directory d,
Analyzer a,
boolean create)
Deprecated.
This constructor will be removed in the 3.0
release, and call
IndexWriter.commit() when needed.
Use IndexWriter.IndexWriter(Directory,Analyzer,boolean,MaxFieldLength) instead. |
IndexWriter(Directory d,
Analyzer a,
boolean create,
IndexDeletionPolicy deletionPolicy,
IndexWriter.MaxFieldLength mfl)
Expert: constructs an IndexWriter with a custom
IndexDeletionPolicy , for the index in d . |
IndexWriter(Directory d,
Analyzer a,
boolean create,
IndexWriter.MaxFieldLength mfl)
Constructs an IndexWriter for the index in
d . |
IndexWriter(Directory d,
Analyzer a,
IndexDeletionPolicy deletionPolicy,
IndexWriter.MaxFieldLength mfl)
Expert: constructs an IndexWriter with a custom
IndexDeletionPolicy , for the index in d ,
first creating it if it does not already exist. |
IndexWriter(Directory d,
Analyzer a,
IndexWriter.MaxFieldLength mfl)
Constructs an IndexWriter for the index in
d , first creating it if it does not
already exist. |
IndexWriter(Directory d,
boolean autoCommit,
Analyzer a)
Deprecated.
This constructor will be removed in the 3.0 release.
Use
IndexWriter.IndexWriter(Directory,Analyzer,MaxFieldLength)
instead, and call IndexWriter.commit() when needed. |
IndexWriter(Directory d,
boolean autoCommit,
Analyzer a,
boolean create)
Deprecated.
This constructor will be removed in the 3.0 release.
Use
IndexWriter.IndexWriter(Directory,Analyzer,boolean,MaxFieldLength)
instead, and call IndexWriter.commit() when needed. |
IndexWriter(Directory d,
boolean autoCommit,
Analyzer a,
boolean create,
IndexDeletionPolicy deletionPolicy)
Deprecated.
This constructor will be removed in the 3.0 release.
Use
IndexWriter.IndexWriter(Directory,Analyzer,boolean,IndexDeletionPolicy,MaxFieldLength)
instead, and call IndexWriter.commit() when needed. |
IndexWriter(Directory d,
boolean autoCommit,
Analyzer a,
IndexDeletionPolicy deletionPolicy)
Deprecated.
This constructor will be removed in the 3.0 release.
Use
IndexWriter.IndexWriter(Directory,Analyzer,IndexDeletionPolicy,MaxFieldLength)
instead, and call IndexWriter.commit() when needed. |
MergePolicy.MergeException(String message,
Directory dir) |
MergePolicy.MergeException(Throwable exc,
Directory dir) |
Constructor and Description |
---|
IndexSearcher(Directory directory)
Creates a searcher searching the index in the provided directory.
|
Modifier and Type | Class and Description |
---|---|
class |
FSDirectory
Straightforward implementation of
Directory as a directory of files. |
class |
MMapDirectory
File-based
Directory implementation that uses mmap for input. |
class |
NIOFSDirectory
NIO version of FSDirectory.
|
class |
RAMDirectory
A memory-resident
Directory implementation. |
Modifier and Type | Method and Description |
---|---|
static void |
Directory.copy(Directory src,
Directory dest,
boolean closeDirSrc)
Copy contents of a directory src to a directory dest.
|
Constructor and Description |
---|
RAMDirectory(Directory dir)
Creates a new
RAMDirectory instance from a different
Directory implementation. |
Modifier and Type | Method and Description |
---|---|
void |
BitVector.write(Directory d,
String name)
Writes this vector to the file
name in Directory
d , in a format that can be read by the constructor BitVector.BitVector(Directory, String) . |
Constructor and Description |
---|
BitVector(Directory d,
String name)
Constructs a bit vector from the file
name in Directory
d , as written by the BitVector.write(org.apache.lucene.store.Directory, java.lang.String) method. |
Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.