ehcache

net.sf.ehcache.search.impl
Interface SearchManager

All Known Implementing Classes:
MemoryOnlyStore.BruteForceSearchManager

public interface SearchManager

Interface for ehcache search engine implementations

Author:
teck

Method Summary
 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
 

Method Detail

executeQuery

Results executeQuery(String cacheName,
                     StoreQuery query,
                     Map<String,AttributeExtractor> attributeExtractors)
Execute a query against the given cache

Parameters:
cacheName - cache name
query - query to execute
attributeExtractors - defined attribute extractors for the cache
Returns:
search results

put

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

Parameters:
cacheName - cache name
segmentId - segment of cache
element - element being added to cache
extractors - the attribute extractors for the cache
dynamicIndexer - dynamicIndexer dynamic attribute extractor (if any)

remove

void remove(String cacheName,
            Object uniqueKey,
            int segmentId,
            boolean isRemoval)
Notify an element removed from a segment of a given cache

Parameters:
cacheName - cache name
uniqueKey - unique key of element
segmentId - segment of cache
isRemoval - true if called as a result of actual storage engine removal (as opposed to move), false otherwise

clear

void clear(String cacheName,
           int segmentId)
Clear a segment of the given cache

Parameters:
cacheName - cache name to clear
segmentId - segment of cache

ehcache

Copyright © 2003-2014 Terracotta, Inc.. All Rights Reserved.