public interface SearchManager
Modifier and Type | Method and Description |
---|---|
void |
clear(String cacheName,
int segmentId)
Clear a segment of the given cache
|
Results |
executeQuery(String cacheName,
StoreQuery query,
Map<String,AttributeExtractor> attributeExtractors)
Execute a query against the given cache
|
void |
put(String cacheName,
int segmentId,
Element element,
Map<String,AttributeExtractor> extractors,
DynamicAttributesExtractor dynamicIndexer)
Notify an element added to a segment of a given cache
|
void |
remove(String cacheName,
Object uniqueKey,
int segmentId,
boolean isRemoval)
Notify an element removed from a segment of a given cache
|
Results executeQuery(String cacheName, StoreQuery query, Map<String,AttributeExtractor> attributeExtractors)
cacheName
- cache namequery
- query to executeattributeExtractors
- defined attribute extractors for the cachevoid put(String cacheName, int segmentId, Element element, Map<String,AttributeExtractor> extractors, DynamicAttributesExtractor dynamicIndexer)
cacheName
- cache namesegmentId
- segment of cacheelement
- element being added to cacheextractors
- the attribute extractors for the cachedynamicIndexer
- dynamicIndexer dynamic attribute extractor (if any)void remove(String cacheName, Object uniqueKey, int segmentId, boolean isRemoval)
cacheName
- cache nameuniqueKey
- unique key of elementsegmentId
- segment of cacheisRemoval
- true if called as a result of actual storage engine removal (as opposed to move), false otherwisevoid clear(String cacheName, int segmentId)
cacheName
- cache name to clearsegmentId
- segment of cacheCopyright © 2003-2013 Terracotta, Inc.. All Rights Reserved.