comparison src/goodjava/lucene/api/GoodWriter.java @ 1548:736ec76bbf42

lucene log work
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 27 Sep 2020 22:07:18 -0600
parents
children
comparison
equal deleted inserted replaced
1547:f24a9ba7551e 1548:736ec76bbf42
1 package goodjava.lucene.api;
2
3 import java.io.IOException;
4 import java.util.Map;
5 import org.apache.lucene.index.IndexReader;
6 import org.apache.lucene.search.Query;
7
8
9 public interface GoodWriter {
10 public IndexReader openReader() throws IOException;
11 public void commit() throws IOException;
12 public void deleteAll() throws IOException;
13 public void deleteDocuments(Query query) throws IOException;
14 public void addDocument(Map<String,Object> storedFields) throws IOException;
15 public void updateDocument(String keyFieldName,Map<String,Object> storedFields) throws IOException;
16 public void tag(String tag) throws IOException;
17 }