Mercurial Hosting > luan
comparison src/goodjava/lucene/api/GoodIndexWriter.java @ 1544:35601f15ecc3
add lucene log tag and restore_from_log
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 20 Sep 2020 20:36:55 -0600 |
parents | c27dc6af87ca |
children | 736ec76bbf42 |
comparison
equal
deleted
inserted
replaced
1543:1db694d98003 | 1544:35601f15ecc3 |
---|---|
13 public void deleteAll() throws IOException; | 13 public void deleteAll() throws IOException; |
14 public void deleteDocuments(Query query) throws IOException; | 14 public void deleteDocuments(Query query) throws IOException; |
15 public void addDocument(Map<String,Object> storedFields) throws IOException; | 15 public void addDocument(Map<String,Object> storedFields) throws IOException; |
16 public void updateDocument(String keyFieldName,Map<String,Object> storedFields) throws IOException; | 16 public void updateDocument(String keyFieldName,Map<String,Object> storedFields) throws IOException; |
17 public void reindexDocuments(String keyFieldName,Query query) throws IOException; | 17 public void reindexDocuments(String keyFieldName,Query query) throws IOException; |
18 public void tag(String tag) throws IOException; | |
18 public IndexWriter getLuceneIndexWriter(); | 19 public IndexWriter getLuceneIndexWriter(); |
19 } | 20 } |