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 TypeMethodDescriptionvoidCacheController.flush(CacheModel cacheModel) Flush a cache model.CacheController.getObject(CacheModel cacheModel, Object key) Get an object from a cache model.voidCacheController.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 TypeMethodDescriptionvoidFifoCacheController.flush(CacheModel cacheModel) Flushes the cache.FifoCacheController.getObject(CacheModel cacheModel, Object key) Get an object out of the cache.voidFifoCacheController.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 TypeMethodDescriptionvoidLruCacheController.flush(CacheModel cacheModel) Flushes the cache.LruCacheController.getObject(CacheModel cacheModel, Object key) Get an object out of the cache.voidLruCacheController.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 TypeMethodDescriptionvoidMemoryCacheController.flush(CacheModel cacheModel) Flushes the cache.MemoryCacheController.getObject(CacheModel cacheModel, Object key) Get an object out of the cache.voidMemoryCacheController.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.cache.oscache
Methods in com.ibatis.sqlmap.engine.cache.oscache with parameters of type CacheModelModifier and TypeMethodDescriptionvoidOSCacheController.flush(CacheModel cacheModel) OSCacheController.getObject(CacheModel cacheModel, Object key) voidOSCacheController.putObject(CacheModel cacheModel, Object key, Object object) OSCacheController.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 TypeMethodDescriptionvoidSqlMapExecutorDelegate.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.