Uses of Class
org.apache.ibatis.cache.CacheKey
-
Packages that use CacheKey Package Description org.apache.ibatis.cache Base package for caching stufforg.apache.ibatis.executor Contains the statement executors.org.apache.ibatis.executor.loader Base package for loading results into beans -
-
Uses of CacheKey in org.apache.ibatis.cache
Subclasses of CacheKey in org.apache.ibatis.cache Modifier and Type Class Description class
NullCacheKey
Deprecated.Since 3.5.3, This class never used and will be removed future version.Fields in org.apache.ibatis.cache declared as CacheKey Modifier and Type Field Description static CacheKey
CacheKey. NULL_CACHE_KEY
Methods in org.apache.ibatis.cache that return CacheKey Modifier and Type Method Description CacheKey
CacheKey. clone()
-
Uses of CacheKey in org.apache.ibatis.executor
Methods in org.apache.ibatis.executor that return CacheKey Modifier and Type Method Description CacheKey
BaseExecutor. createCacheKey(MappedStatement ms, java.lang.Object parameterObject, RowBounds rowBounds, BoundSql boundSql)
CacheKey
CachingExecutor. createCacheKey(MappedStatement ms, java.lang.Object parameterObject, RowBounds rowBounds, BoundSql boundSql)
CacheKey
Executor. createCacheKey(MappedStatement ms, java.lang.Object parameterObject, RowBounds rowBounds, BoundSql boundSql)
Methods in org.apache.ibatis.executor with parameters of type CacheKey Modifier and Type Method Description void
BaseExecutor. deferLoad(MappedStatement ms, MetaObject resultObject, java.lang.String property, CacheKey key, java.lang.Class<?> targetType)
void
CachingExecutor. deferLoad(MappedStatement ms, MetaObject resultObject, java.lang.String property, CacheKey key, java.lang.Class<?> targetType)
void
Executor. deferLoad(MappedStatement ms, MetaObject resultObject, java.lang.String property, CacheKey key, java.lang.Class<?> targetType)
boolean
BaseExecutor. isCached(MappedStatement ms, CacheKey key)
boolean
CachingExecutor. isCached(MappedStatement ms, CacheKey key)
boolean
Executor. isCached(MappedStatement ms, CacheKey key)
<E> java.util.List<E>
BaseExecutor. query(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds, ResultHandler resultHandler, CacheKey key, BoundSql boundSql)
<E> java.util.List<E>
CachingExecutor. query(MappedStatement ms, java.lang.Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, CacheKey key, BoundSql boundSql)
<E> java.util.List<E>
Executor. query(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds, ResultHandler resultHandler, CacheKey cacheKey, BoundSql boundSql)
-
Uses of CacheKey in org.apache.ibatis.executor.loader
Fields in org.apache.ibatis.executor.loader declared as CacheKey Modifier and Type Field Description protected CacheKey
ResultLoader. cacheKey
Constructors in org.apache.ibatis.executor.loader with parameters of type CacheKey Constructor Description ResultLoader(Configuration config, Executor executor, MappedStatement mappedStatement, java.lang.Object parameterObject, java.lang.Class<?> targetType, CacheKey cacheKey, BoundSql boundSql)
-