Mercurial Hosting > luan
view src/goodjava/lucene/api/GoodIndexWriter.java @ 1548:736ec76bbf42
lucene log work
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 27 Sep 2020 22:07:18 -0600 |
parents | 35601f15ecc3 |
children | 41c32da4cbd1 |
line wrap: on
line source
package goodjava.lucene.api; import java.io.IOException; import org.apache.lucene.index.IndexWriter; import org.apache.lucene.search.Query; public interface GoodIndexWriter extends GoodWriter { public void close() throws IOException; public void rollback() throws IOException; public void reindexDocuments(String keyFieldName,Query query) throws IOException; public IndexWriter getLuceneIndexWriter(); }