annotate src/goodjava/lucene/api/GoodIndexWriterConfig.java @ 1503:74c534de211f
use InheritableThreadLocal in ThreadLocalAppender
author |
Franklin Schmidt <fschmidt@gmail.com> |
date |
Sun, 10 May 2020 23:28:16 -0600 |
parents |
3ab0d043370f |
children |
f848d40b3b07 |
rev |
line source |
1460
|
1 package goodjava.lucene.api;
|
|
2
|
|
3 import java.util.Map;
|
|
4 import org.apache.lucene.analysis.Analyzer;
|
|
5
|
|
6
|
|
7 public interface GoodIndexWriterConfig {
|
|
8 public boolean isIndexed(String fieldName);
|
|
9 public Analyzer getAnalyzer(String fieldName);
|
|
10 public Map<String,Object> getUnstoredFields(Map<String,Object> storedFields);
|
|
11 }
|