Redis
CarryJey
一、任何事都没有表面看起来那么简单;
二、所有的事都会比你预计的时间长;
三、会出错的事总会出错;
四、如果你担心某种情况发生,那么它就更有可能发生。
展开
-
java对Redis的基本操作
转自:https://www.cnblogs.com/edisonfeng/p/3571870.html 1、Key功能public static void main(String[] args) { //连接本地的 Redis 服务 Jedis jedis = new Jedis("localhost"); System...转载 2018-07-23 20:46:57 · 131 阅读 · 0 评论 -
SpringBoot-redis 相关注解的使用
ps:@Caching组内只能用同一种的多个注解顺带推荐一些很棒的redis网站:菜鸟教程:http://www.runoob.com/redis/redis-lists.html官方文档英文原版:https://redis.io/documentation官方文档原版翻译中文版:http://doc.redisfans.com/index.htmlredisson...原创 2018-08-03 12:23:46 · 778 阅读 · 0 评论 -
springboot整合缓存redis-cache
1、pom添加必要的redis、cache、common依赖 <!--cache 依赖包--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-star...原创 2018-09-29 11:45:41 · 1233 阅读 · 0 评论 -
springboot整合redisson
遇到的最大问题:redisson配置了password之后依然显示的是未配置密码原因:启动redis的方式不对,没有走redis.config,本文最下边会说明。整合步骤1、添加redisson依赖包<!--redission 依赖包--> <dependency> <groupId>org.rediss...原创 2018-09-29 14:37:07 · 4218 阅读 · 0 评论