Uses of Interface
org.apache.ibatis.cache.Cache

Packages that use Cache
org.apache.ibatis.builder   
org.apache.ibatis.cache   
org.apache.ibatis.cache.decorators   
org.apache.ibatis.cache.impl   
org.apache.ibatis.mapping   
org.apache.ibatis.session   
 

Uses of Cache in org.apache.ibatis.builder
 

Methods in org.apache.ibatis.builder that return Cache
 Cache MapperBuilderAssistant.useCacheRef(String namespace)
           
 Cache MapperBuilderAssistant.useNewCache(Class typeClass, Class evictionClass, Long flushInterval, Integer size, boolean readWrite, Properties props)
           
 

Uses of Cache in org.apache.ibatis.cache
 

Methods in org.apache.ibatis.cache with parameters of type Cache
 void TransactionalCacheManager.clear(Cache cache)
           
 void TransactionalCacheManager.putObject(Cache cache, CacheKey key, Object value)
           
 

Uses of Cache in org.apache.ibatis.cache.decorators
 

Classes in org.apache.ibatis.cache.decorators that implement Cache
 class FifoCache
          FIFO (first in, first out) cache decorator
 class LoggingCache
           
 class LruCache
          Lru (first in, first out) cache decorator
 class ScheduledCache
           
 class SerializedCache
           
 class SoftCache
          Soft Reference cache decorator Thanks to Dr.
 class SynchronizedCache
           
 class TransactionalCache
           
 class WeakCache
          Weak Reference cache decorator Thanks to Dr.
 

Constructors in org.apache.ibatis.cache.decorators with parameters of type Cache
FifoCache(Cache delegate)
           
LoggingCache(Cache delegate)
           
LruCache(Cache delegate)
           
ScheduledCache(Cache delegate)
           
SerializedCache(Cache delegate)
           
SoftCache(Cache delegate)
           
SynchronizedCache(Cache delegate)
           
TransactionalCache(Cache delegate)
           
WeakCache(Cache delegate)
           
 

Uses of Cache in org.apache.ibatis.cache.impl
 

Classes in org.apache.ibatis.cache.impl that implement Cache
 class PerpetualCache
           
 

Uses of Cache in org.apache.ibatis.mapping
 

Methods in org.apache.ibatis.mapping that return Cache
 Cache CacheBuilder.build()
           
 Cache MappedStatement.getCache()
           
 

Methods in org.apache.ibatis.mapping with parameters of type Cache
 MappedStatement.Builder MappedStatement.Builder.cache(Cache cache)
           
 

Method parameters in org.apache.ibatis.mapping with type arguments of type Cache
 CacheBuilder CacheBuilder.addDecorator(Class<? extends Cache> decorator)
           
 CacheBuilder CacheBuilder.implementation(Class<? extends Cache> implementation)
           
 

Uses of Cache in org.apache.ibatis.session
 

Fields in org.apache.ibatis.session with type parameters of type Cache
protected  Map<String,Cache> Configuration.caches
           
 

Methods in org.apache.ibatis.session that return Cache
 Cache Configuration.getCache(String id)
           
 

Methods in org.apache.ibatis.session that return types with arguments of type Cache
 Collection<Cache> Configuration.getCaches()
           
 

Methods in org.apache.ibatis.session with parameters of type Cache
 void Configuration.addCache(Cache cache)
           
 



Copyright © 2010. All Rights Reserved.