摘要: spring注解 注解解释 @Controller 组合注解(组合了@Component注解),应用在MVC层(控制层),DispatcherServlet会自动扫描注解了此注解的类,然后将web请求映射到注解了@RequestMapping的方法上。 @Service 组合注解(组合了@Compo 阅读全文
posted @ 2019-11-15 15:20 cuiqq 阅读(177) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/kakatadage/p/9995578.html 阅读全文
posted @ 2019-11-15 13:30 cuiqq 阅读(80) 评论(0) 推荐(0) 编辑
摘要: AOF RDB 阅读全文
posted @ 2019-11-15 12:51 cuiqq 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 一、rediscli xxx 发送命令 二、进入客户端后的命令 阅读全文
posted @ 2019-11-15 12:49 cuiqq 阅读(233) 评论(0) 推荐(0) 编辑
摘要: Redis提供了5种数据淘汰策略: volatile-lru:使用LRU算法进行数据淘汰(淘汰上次使用时间最早的,且使用次数最少的key),只淘汰设定了有效期的key allkeys-lru:使用LRU算法进行数据淘汰,所有的key都可以被淘汰 volatile-random:随机淘汰数据,只淘汰设 阅读全文
posted @ 2019-11-15 12:42 cuiqq 阅读(279) 评论(0) 推荐(0) 编辑
摘要: Cluster: 集群 分片 阅读全文
posted @ 2019-11-15 12:38 cuiqq 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 哨兵模式 阅读全文
posted @ 2019-11-15 12:37 cuiqq 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 主从复制 读写分离 https://blog.csdn.net/u014691098/article/details/82391608 阅读全文
posted @ 2019-11-15 12:37 cuiqq 阅读(98) 评论(0) 推荐(0) 编辑
摘要: CORS 阅读全文
posted @ 2019-11-15 09:00 cuiqq 阅读(80) 评论(0) 推荐(0) 编辑