【cache】更新缓存实现

pull/3/head
fengshuonan 2021-02-08 09:40:26 +08:00
parent 3eb186db6c
commit 971638e69b
1 changed files with 11 additions and 0 deletions

View File

@ -87,4 +87,15 @@ public abstract class AbstractRedisCacheOperator<T> implements CacheOperatorApi<
}
return results;
}
/**
* RedisTemplate
*
* @author fengshuonan
* @date 2021/2/8 9:40
*/
public RedisTemplate<String, T> getRedisTemplate() {
return this.redisTemplate;
}
}