Class IndexModifier
- java.lang.Object
-
- org.apache.lucene.index.IndexModifier
-
Deprecated.Please useIndexWriterinstead.
public class IndexModifier extends java.lang.Object[Note that as of 2.1, all but one of the methods in this class are available via
A class to modify an index, i.e. to delete and add documents. This class hidesIndexWriter. The one method that is not available isdeleteDocument(int).]IndexReaderandIndexWriterso that you do not need to care about implementation details such as that adding documents is done via IndexWriter and deletion is done via IndexReader.Note that you cannot create more than one
IndexModifierobject on the same directory at the same time.Example usage:
Analyzer analyzer = new StandardAnalyzer();
// create an index in /tmp/index, overwriting an existing one:
IndexModifier indexModifier = new IndexModifier("/tmp/index", analyzer, true);
Document doc = new Document();
doc.add(new Field("id", "1", Field.Store.YES, Field.Index.UN_TOKENIZED));
doc.add(new Field("body", "a simple test", Field.Store.YES, Field.Index.TOKENIZED));
indexModifier.addDocument(doc);
int deleted = indexModifier.delete(new Term("id", "1"));
System.out.println("Deleted " + deleted + " document");
indexModifier.flush();
System.out.println(indexModifier.docCount() + " docs in index");
indexModifier.close();Not all methods of IndexReader and IndexWriter are offered by this class. If you need access to additional methods, either use those classes directly or implement your own class that extends
IndexModifier.Although an instance of this class can be used from more than one thread, you will not get the best performance. You might want to use IndexReader and IndexWriter directly for that (but you will need to care about synchronization yourself then).
While you can freely mix calls to add() and delete() using this class, you should batch you calls for best performance. For example, if you want to update 20 documents, you should first delete all those documents, then add all the new documents.
-
-
Constructor Summary
Constructors Constructor and Description IndexModifier(Directory directory, Analyzer analyzer, boolean create)Deprecated.Open an index with write access.IndexModifier(java.io.File file, Analyzer analyzer, boolean create)Deprecated.Open an index with write access.IndexModifier(java.lang.String dirName, Analyzer analyzer, boolean create)Deprecated.Open an index with write access.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method and Description voidaddDocument(Document doc)Deprecated.Adds a document to this index.voidaddDocument(Document doc, Analyzer docAnalyzer)Deprecated.Adds a document to this index, using the provided analyzer instead of the one specific in the constructor.voidclose()Deprecated.Close this index, writing all pending changes to disk.voiddeleteDocument(int docNum)Deprecated.Deletes the document numbereddocNum.intdeleteDocuments(Term term)Deprecated.Deletes all documents containingterm.intdocCount()Deprecated.Returns the number of documents currently in this index.voidflush()Deprecated.Make sure all changes are written to disk.java.io.PrintStreamgetInfoStream()Deprecated.intgetMaxBufferedDocs()Deprecated.intgetMaxFieldLength()Deprecated.intgetMergeFactor()Deprecated.booleangetUseCompoundFile()Deprecated.voidoptimize()Deprecated.Merges all segments together into a single segment, optimizing an index for search.voidsetInfoStream(java.io.PrintStream infoStream)Deprecated.If non-null, information about merges and a message whengetMaxFieldLength()is reached will be printed to this.voidsetMaxBufferedDocs(int maxBufferedDocs)Deprecated.Determines the minimal number of documents required before the buffered in-memory documents are merging and a new Segment is created.voidsetMaxFieldLength(int maxFieldLength)Deprecated.The maximum number of terms that will be indexed for a single field in a document.voidsetMergeFactor(int mergeFactor)Deprecated.Determines how often segment indices are merged by addDocument().voidsetUseCompoundFile(boolean useCompoundFile)Deprecated.Setting to turn on usage of a compound file.java.lang.StringtoString()Deprecated.
-
-
-
Constructor Detail
-
IndexModifier
public IndexModifier(Directory directory, Analyzer analyzer, boolean create) throws CorruptIndexException, LockObtainFailedException, java.io.IOException
Deprecated.Open an index with write access.- Parameters:
directory- the index directoryanalyzer- the analyzer to use for adding new documentscreate-trueto create the index or overwrite the existing one;falseto append to the existing index- Throws:
CorruptIndexException- if the index is corruptLockObtainFailedException- if another writer has this index open (write.lockcould not be obtained)java.io.IOException- if there is a low-level IO error
-
IndexModifier
public IndexModifier(java.lang.String dirName, Analyzer analyzer, boolean create) throws CorruptIndexException, LockObtainFailedException, java.io.IOExceptionDeprecated.Open an index with write access.- Parameters:
dirName- the index directoryanalyzer- the analyzer to use for adding new documentscreate-trueto create the index or overwrite the existing one;falseto append to the existing index- Throws:
CorruptIndexException- if the index is corruptLockObtainFailedException- if another writer has this index open (write.lockcould not be obtained)java.io.IOException- if there is a low-level IO error
-
IndexModifier
public IndexModifier(java.io.File file, Analyzer analyzer, boolean create) throws CorruptIndexException, LockObtainFailedException, java.io.IOExceptionDeprecated.Open an index with write access.- Parameters:
file- the index directoryanalyzer- the analyzer to use for adding new documentscreate-trueto create the index or overwrite the existing one;falseto append to the existing index- Throws:
CorruptIndexException- if the index is corruptLockObtainFailedException- if another writer has this index open (write.lockcould not be obtained)java.io.IOException- if there is a low-level IO error
-
-
Method Detail
-
flush
public void flush() throws CorruptIndexException, LockObtainFailedException, java.io.IOExceptionDeprecated.Make sure all changes are written to disk.- Throws:
CorruptIndexException- if the index is corruptLockObtainFailedException- if another writer has this index open (write.lockcould not be obtained)java.io.IOException- if there is a low-level IO error
-
addDocument
public void addDocument(Document doc, Analyzer docAnalyzer) throws CorruptIndexException, LockObtainFailedException, java.io.IOException
Deprecated.Adds a document to this index, using the provided analyzer instead of the one specific in the constructor. If the document contains more thansetMaxFieldLength(int)terms for a given field, the remainder are discarded.- Throws:
java.lang.IllegalStateException- if the index is closedCorruptIndexException- if the index is corruptLockObtainFailedException- if another writer has this index open (write.lockcould not be obtained)java.io.IOException- if there is a low-level IO error- See Also:
IndexWriter.addDocument(Document, Analyzer)
-
addDocument
public void addDocument(Document doc) throws CorruptIndexException, LockObtainFailedException, java.io.IOException
Deprecated.Adds a document to this index. If the document contains more thansetMaxFieldLength(int)terms for a given field, the remainder are discarded.- Throws:
java.lang.IllegalStateException- if the index is closedCorruptIndexException- if the index is corruptLockObtainFailedException- if another writer has this index open (write.lockcould not be obtained)java.io.IOException- if there is a low-level IO error- See Also:
IndexWriter.addDocument(Document)
-
deleteDocuments
public int deleteDocuments(Term term) throws StaleReaderException, CorruptIndexException, LockObtainFailedException, java.io.IOException
Deprecated.Deletes all documents containingterm. This is useful if one uses a document field to hold a unique ID string for the document. Then to delete such a document, one merely constructs a term with the appropriate field and the unique ID string as its text and passes it to this method. Returns the number of documents deleted.- Returns:
- the number of documents deleted
- Throws:
java.lang.IllegalStateException- if the index is closedStaleReaderException- if the index has changed since this reader was openedCorruptIndexException- if the index is corruptLockObtainFailedException- if another writer has this index open (write.lockcould not be obtained)java.io.IOException- if there is a low-level IO error- See Also:
IndexReader.deleteDocuments(Term)
-
deleteDocument
public void deleteDocument(int docNum) throws StaleReaderException, CorruptIndexException, LockObtainFailedException, java.io.IOExceptionDeprecated.Deletes the document numbereddocNum.- Throws:
StaleReaderException- if the index has changed since this reader was openedCorruptIndexException- if the index is corruptLockObtainFailedException- if another writer has this index open (write.lockcould not be obtained)java.lang.IllegalStateException- if the index is closedjava.io.IOException- See Also:
IndexReader.deleteDocument(int)
-
docCount
public int docCount()
Deprecated.Returns the number of documents currently in this index. If the writer is currently open, this returnsIndexWriter.docCount(), elseIndexReader.numDocs(). But, note thatIndexWriter.docCount()does not take deletions into account, unlikeIndexReader.numDocs().- Throws:
java.lang.IllegalStateException- if the index is closed
-
optimize
public void optimize() throws CorruptIndexException, LockObtainFailedException, java.io.IOExceptionDeprecated.Merges all segments together into a single segment, optimizing an index for search.- Throws:
java.lang.IllegalStateException- if the index is closedCorruptIndexException- if the index is corruptLockObtainFailedException- if another writer has this index open (write.lockcould not be obtained)java.io.IOException- if there is a low-level IO error- See Also:
IndexWriter.optimize()
-
setInfoStream
public void setInfoStream(java.io.PrintStream infoStream)
Deprecated.If non-null, information about merges and a message whengetMaxFieldLength()is reached will be printed to this.Example: index.setInfoStream(System.err);
- Throws:
java.lang.IllegalStateException- if the index is closed- See Also:
IndexWriter.setInfoStream(PrintStream)
-
getInfoStream
public java.io.PrintStream getInfoStream() throws CorruptIndexException, LockObtainFailedException, java.io.IOExceptionDeprecated.- Throws:
CorruptIndexException- if the index is corruptLockObtainFailedException- if another writer has this index open (write.lockcould not be obtained)java.io.IOException- if there is a low-level IO error- See Also:
setInfoStream(PrintStream)
-
setUseCompoundFile
public void setUseCompoundFile(boolean useCompoundFile)
Deprecated.Setting to turn on usage of a compound file. When on, multiple files for each segment are merged into a single file once the segment creation is finished. This is done regardless of what directory is in use.- Throws:
java.lang.IllegalStateException- if the index is closed- See Also:
IndexWriter.setUseCompoundFile(boolean)
-
getUseCompoundFile
public boolean getUseCompoundFile() throws CorruptIndexException, LockObtainFailedException, java.io.IOExceptionDeprecated.- Throws:
CorruptIndexException- if the index is corruptLockObtainFailedException- if another writer has this index open (write.lockcould not be obtained)java.io.IOException- if there is a low-level IO error- See Also:
setUseCompoundFile(boolean)
-
setMaxFieldLength
public void setMaxFieldLength(int maxFieldLength)
Deprecated.The maximum number of terms that will be indexed for a single field in a document. This limits the amount of memory required for indexing, so that collections with very large files will not crash the indexing process by running out of memory. Note that this effectively truncates large documents, excluding from the index terms that occur further in the document. If you know your source documents are large, be sure to set this value high enough to accomodate the expected size. If you set it to Integer.MAX_VALUE, then the only limit is your memory, but you should anticipate an OutOfMemoryError. By default, no more than 10,000 terms will be indexed for a field.- Throws:
java.lang.IllegalStateException- if the index is closed- See Also:
IndexWriter.setMaxFieldLength(int)
-
getMaxFieldLength
public int getMaxFieldLength() throws CorruptIndexException, LockObtainFailedException, java.io.IOExceptionDeprecated.- Throws:
CorruptIndexException- if the index is corruptLockObtainFailedException- if another writer has this index open (write.lockcould not be obtained)java.io.IOException- if there is a low-level IO error- See Also:
setMaxFieldLength(int)
-
setMaxBufferedDocs
public void setMaxBufferedDocs(int maxBufferedDocs)
Deprecated.Determines the minimal number of documents required before the buffered in-memory documents are merging and a new Segment is created. Since Documents are merged in aRAMDirectory, large value gives faster indexing. At the same time, mergeFactor limits the number of files open in a FSDirectory.The default value is 10.
- Throws:
java.lang.IllegalStateException- if the index is closedjava.lang.IllegalArgumentException- if maxBufferedDocs is smaller than 2- See Also:
IndexWriter.setMaxBufferedDocs(int)
-
getMaxBufferedDocs
public int getMaxBufferedDocs() throws CorruptIndexException, LockObtainFailedException, java.io.IOExceptionDeprecated.- Throws:
CorruptIndexException- if the index is corruptLockObtainFailedException- if another writer has this index open (write.lockcould not be obtained)java.io.IOException- if there is a low-level IO error- See Also:
setMaxBufferedDocs(int)
-
setMergeFactor
public void setMergeFactor(int mergeFactor)
Deprecated.Determines how often segment indices are merged by addDocument(). With smaller values, less RAM is used while indexing, and searches on unoptimized indices are faster, but indexing speed is slower. With larger values, more RAM is used during indexing, and while searches on unoptimized indices are slower, indexing is faster. Thus larger values (> 10) are best for batch index creation, and smaller values (< 10) for indices that are interactively maintained.This must never be less than 2. The default value is 10.
- Throws:
java.lang.IllegalStateException- if the index is closed- See Also:
IndexWriter.setMergeFactor(int)
-
getMergeFactor
public int getMergeFactor() throws CorruptIndexException, LockObtainFailedException, java.io.IOExceptionDeprecated.- Throws:
CorruptIndexException- if the index is corruptLockObtainFailedException- if another writer has this index open (write.lockcould not be obtained)java.io.IOException- if there is a low-level IO error- See Also:
setMergeFactor(int)
-
close
public void close() throws CorruptIndexException, java.io.IOExceptionDeprecated.Close this index, writing all pending changes to disk.- Throws:
java.lang.IllegalStateException- if the index has been closed before alreadyCorruptIndexException- if the index is corruptjava.io.IOException- if there is a low-level IO error
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toStringin classjava.lang.Object
-
-
DataMelt 3.0 © DataMelt by jWork.ORG