Uses of Interface
org.hibernate.cache.Cache

Packages that use Cache
org.hibernate.cache   
org.hibernate.engine   
org.hibernate.impl   
 

Uses of Cache in org.hibernate.cache
 

Subinterfaces of Cache in org.hibernate.cache
 interface OptimisticCache
          A contract for transactional cache implementations which support optimistic locking of items within the cache.
 

Classes in org.hibernate.cache that implement Cache
 class EhCache
          EHCache plugin for Hibernate

EHCache uses a MemoryStore and a DiskStore.

 class HashtableCache
          A lightweight implementation of the Cache interface
 class OptimisticTreeCache
          Represents a particular region within the given JBossCache TreeCache utilizing TreeCache's optimistic locking capabilities.
 class OSCache
           
 class SwarmCache
           
 class TreeCache
          Represents a particular region within the given JBossCache TreeCache.
 

Methods in org.hibernate.cache that return Cache
 Cache CacheProvider.buildCache(String regionName, Properties properties)
          Configure the cache
 Cache EhCacheProvider.buildCache(String name, Properties properties)
          Builds a Cache.
 Cache HashtableCacheProvider.buildCache(String regionName, Properties properties)
           
 Cache JndiBoundTreeCacheProvider.buildCache(String regionName, Properties properties)
          Construct a Cache representing the "region" within in the underlying cache provider.
 Cache NoCacheProvider.buildCache(String regionName, Properties properties)
          Configure the cache
 Cache OSCacheProvider.buildCache(String region, Properties properties)
          Builds a new Cache instance, and gets it's properties from the OSCache Config which reads the properties file (oscache.properties) from the classpath.
 Cache OptimisticTreeCacheProvider.buildCache(String regionName, Properties properties)
          Construct and configure the Cache representation of a named cache region.
 Cache SwarmCacheProvider.buildCache(String regionName, Properties properties)
           
 Cache TreeCacheProvider.buildCache(String regionName, Properties properties)
          Construct and configure the Cache representation of a named cache region.
 Cache CacheConcurrencyStrategy.getCache()
          Get the wrapped cache implementation
 Cache NonstrictReadWriteCache.getCache()
           
 Cache QueryCache.getCache()
           
 Cache ReadOnlyCache.getCache()
           
 Cache ReadWriteCache.getCache()
           
 Cache StandardQueryCache.getCache()
           
 Cache TransactionalCache.getCache()
           
 Cache UpdateTimestampsCache.getCache()
           
 

Methods in org.hibernate.cache with parameters of type Cache
 void CacheConcurrencyStrategy.setCache(Cache cache)
          Set the underlying cache implementation.
 void NonstrictReadWriteCache.setCache(Cache cache)
           
 void ReadOnlyCache.setCache(Cache cache)
           
 void ReadWriteCache.setCache(Cache cache)
           
 void TransactionalCache.setCache(Cache cache)
           
 

Uses of Cache in org.hibernate.engine
 

Methods in org.hibernate.engine that return Cache
 Cache SessionFactoryImplementor.getSecondLevelCacheRegion(String regionName)
          Get a named second-level cache region
 

Uses of Cache in org.hibernate.impl
 

Methods in org.hibernate.impl that return Cache
 Cache SessionFactoryImpl.getSecondLevelCacheRegion(String regionName)