Interface SolrIndexSynchronizationStrategy
- All Known Implementing Classes:
CronJobSolrIndexSynchronizationStrategy,DirectSolrIndexSynchronizationStrategy
public interface SolrIndexSynchronizationStrategy
Solr index synchronization strategy
-
Method Summary
Modifier and TypeMethodDescriptionvoidremoveItem(String typecode, long pk) Remove item from solr indexvoidremoveItems(String typecode, List<PK> pkList) Remove item from solr indexvoidupdateItem(String typecode, long pk) Update item in solr indexvoidupdateItems(String typecode, List<PK> pkList) Update item in solr index
-
Method Details
-
updateItem
Update item in solr index- Parameters:
typecode- item typecodepk- item pk
-
updateItems
Update item in solr index- Parameters:
typecode- item typecodepkList- list of updated pks
-
removeItem
Remove item from solr index- Parameters:
typecode- item typecodepk- item pk
-
removeItems
Remove item from solr index- Parameters:
typecode- item typecodepkList- item pk
-