Uses of Class
com.ibatis.sqlmap.engine.cache.CacheModel
Packages that use CacheModel
Package
Description
-
Uses of CacheModel in com.ibatis.sqlmap.engine.cache
Methods in com.ibatis.sqlmap.engine.cache with parameters of type CacheModelModifier and TypeMethodDescriptionvoid
CacheController.flush
(CacheModel cacheModel) Flush a cache model.CacheController.getObject
(CacheModel cacheModel, Object key) Get an object from a cache model.void
CacheController.putObject
(CacheModel cacheModel, Object key, Object object) Put an object into a cache model.CacheController.removeObject
(CacheModel cacheModel, Object key) Remove an object from a cache model. -
Uses of CacheModel in com.ibatis.sqlmap.engine.cache.fifo
Methods in com.ibatis.sqlmap.engine.cache.fifo with parameters of type CacheModelModifier and TypeMethodDescriptionvoid
FifoCacheController.flush
(CacheModel cacheModel) Flushes the cache.FifoCacheController.getObject
(CacheModel cacheModel, Object key) Get an object out of the cache.void
FifoCacheController.putObject
(CacheModel cacheModel, Object key, Object value) Add an object to the cacheFifoCacheController.removeObject
(CacheModel cacheModel, Object key) -
Uses of CacheModel in com.ibatis.sqlmap.engine.cache.lru
Methods in com.ibatis.sqlmap.engine.cache.lru with parameters of type CacheModelModifier and TypeMethodDescriptionvoid
LruCacheController.flush
(CacheModel cacheModel) Flushes the cache.LruCacheController.getObject
(CacheModel cacheModel, Object key) Get an object out of the cache.void
LruCacheController.putObject
(CacheModel cacheModel, Object key, Object value) Add an object to the cacheLruCacheController.removeObject
(CacheModel cacheModel, Object key) -
Uses of CacheModel in com.ibatis.sqlmap.engine.cache.memory
Methods in com.ibatis.sqlmap.engine.cache.memory with parameters of type CacheModelModifier and TypeMethodDescriptionvoid
MemoryCacheController.flush
(CacheModel cacheModel) Flushes the cache.MemoryCacheController.getObject
(CacheModel cacheModel, Object key) Get an object out of the cache.void
MemoryCacheController.putObject
(CacheModel cacheModel, Object key, Object value) Add an object to the cacheMemoryCacheController.removeObject
(CacheModel cacheModel, Object key) -
Uses of CacheModel in com.ibatis.sqlmap.engine.config
Methods in com.ibatis.sqlmap.engine.config that return CacheModel -
Uses of CacheModel in com.ibatis.sqlmap.engine.impl
Methods in com.ibatis.sqlmap.engine.impl that return CacheModelModifier and TypeMethodDescriptionSqlMapExecutorDelegate.getCacheModel
(String id) Get a cache model by ID.Methods in com.ibatis.sqlmap.engine.impl with parameters of type CacheModelModifier and TypeMethodDescriptionvoid
SqlMapExecutorDelegate.addCacheModel
(CacheModel model) Add a cache model. -
Uses of CacheModel in com.ibatis.sqlmap.engine.mapping.statement
Constructors in com.ibatis.sqlmap.engine.mapping.statement with parameters of type CacheModelModifierConstructorDescriptionCachingStatement
(MappedStatement statement, CacheModel cacheModel) Instantiates a new caching statement.