定义了一个CachingExecutor , 当全局配置中的cacheEnabled=true 时,Configuration 的newExecutor()方法会对SimpleExecutor 进行装饰,返回被装饰过的Executor。CachingExecutor 中用HashMap 维护缓存。
在DefaultSqlSession 调用Executor 时,会先走到装饰器CachingExecutor。
定义了一个CacheKey 用于计算缓存Key,主要根据SQL 语句和参数计算。
定义了一个CachingExecutor , 当全局配置中的cacheEnabled=true 时,Configuration 的newExecutor()方法会对SimpleExecutor 进行装饰,返回被装饰过的Executor。CachingExecutor 中用HashMap 维护缓存。
在DefaultSqlSession 调用Executor 时,会先走到装饰器CachingExecutor。
定义了一个CacheKey 用于计算缓存Key,主要根据SQL 语句和参数计算。