Revision 7535
Added by Jing Tao over 11 years ago
docs/user/metacat/source/query-index.rst | ||
---|---|---|
165 | 165 |
|
166 | 166 |
package "Stand-alone indexer (webapp or daemon)" { |
167 | 167 |
|
168 |
class ApplicationController { |
|
169 |
- List<SolrIndex> solrIndex |
|
170 |
+ regenerateIndex() |
|
171 |
} |
|
172 |
|
|
168 | 173 |
class SolrIndex { |
169 | 174 |
- List<IDocumentSubprocessor> subprocessors |
170 |
- IDocumentSubprocessorFactory subprocessorFactory |
|
171 | 175 |
- SolrServer solrServer |
172 | 176 |
+ insert(String pid, InputStream data) |
173 | 177 |
+ update(String pid, InputStream data) |
... | ... | |
205 | 209 |
HazelcastService .. SystemMetadataEventListener |
206 | 210 |
ObjectPathMap .. SystemMetadataEventListener |
207 | 211 |
|
212 |
ApplicationController o--"*" SolrIndex |
|
208 | 213 |
SolrIndex o--"1" SolrServer |
209 | 214 |
SolrIndex "1"--o SystemMetadataEventListener |
210 | 215 |
SolrIndex o--"*" IDocumentSubprocessor: Assembled using Spring bean configuration |
Also available in: Unified diff
Add a new class ApplicationController.