Uses of Class
org.egothor.cache.CachedTerm

Packages that use CachedTerm
org.egothor.cache Provides classes that help implementing a cache for the egothor project. 
org.egothor.core.query This package contains objects that represent a structure of a query in our inner and binary form, readers of a barrel and a result queue. 
 

Uses of CachedTerm in org.egothor.cache
 

Methods in org.egothor.cache that return types with arguments of type CachedTerm
 Cache<CachedTerm,CachedIListPage> CachedRider.getCache()
          Gets the actual cache used for storing inverted list pages.
 

Methods in org.egothor.cache with parameters of type CachedTerm
 boolean CachedRider.containsKey(CachedTerm term)
          Checks whether the specified term is cached.
 CachedIListPage CachedRider.get(CachedTerm term)
          Gets the inverted list page associated with the specified term from the cache if the term is cached, or the inverted list page returned by the resolver.
 CachedIListPage CachedRider.put(CachedTerm term, CachedIListPage page)
          Adds a new inverted list page for the specified term to the cache.
 CachedIListPage CachedRider.remove(CachedTerm term)
          Removes the specified term and its page from the cache.
 CachedIListPage CachedRider.resolve(CachedTerm term)
          Return a new cached inverted list page of the specified term.
 CachedIListPage CachedRider.update(CachedTerm term, CachedIListPage page)
          Updates the inverted list page associated with the specified term in the cache if a cached page exists for the term.
 

Constructor parameters in org.egothor.cache with type arguments of type CachedTerm
CachedRider(Cache<CachedTerm,CachedIListPage> cache)
          Constructor for the CachedRider object.
CachedRider(Cache<CachedTerm,CachedIListPage> cache, int pageSize)
          Constructor for the CachedRider object.
 

Uses of CachedTerm in org.egothor.core.query
 

Method parameters in org.egothor.core.query with type arguments of type CachedTerm
static void Rider.initializeCache(Cache<CachedTerm,CachedIListPage> cache, int pageSize)
          Initializes the cache to be used for caching inverted lists.