| Interface and Description |
|---|
| org.apache.lucene.index.IndexCommitPoint
Please subclass IndexCommit class instead
|
| Class and Description |
|---|
| org.apache.lucene.document.DateField
If you build a new index, use
DateTools instead. This class is included for use with existing
indices and will be removed in a future release. |
| org.apache.lucene.search.Hit
Hits will be removed in Lucene 3.0. Use
TopDocCollector and TopDocs instead. |
| org.apache.lucene.search.HitIterator
Hits will be removed in Lucene 3.0. Use
TopDocCollector and TopDocs instead. |
| org.apache.lucene.search.Hits
Hits will be removed in Lucene 3.0.
Instead e. g.
TopDocCollector collector = new TopDocCollector(hitsPerPage);
searcher.search(query, collector);
ScoreDoc[] hits = collector.topDocs().scoreDocs;
for (int i = 0; i < hits.length; i++) {
int docId = hits[i].doc;
Document d = searcher.doc(docId);
// do something with current hit
...
|
| org.apache.lucene.index.IndexModifier
Please use
IndexWriter instead. |
| org.apache.lucene.search.QueryFilter
use a CachingWrapperFilter with QueryWrapperFilter
|