摘要: 原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/12565070.html scikit-learn algorithm cheat-sheet 工具分享 Anaconda https://www.anaconda.com/ NumPy https:// 阅读全文
posted @ 2020-03-25 11:51 李白与酒 阅读(246) 评论(0) 推荐(0) 编辑
摘要: Reference: https://time.geekbang.org/column/article/94311 阅读全文
posted @ 2019-11-07 10:12 李白与酒 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/11488633.html 初始阶段的网站架构 应用服务和数据服务分离 使用缓存改善网站性能 使用应用服务器集群改善网站的并发处理能力 数据库读写分离 使用反向代理和CDN加速网站响应 使用分布式文件系统和 阅读全文
posted @ 2019-09-08 21:37 李白与酒 阅读(167) 评论(0) 推荐(0) 编辑
摘要: Introduction to Microservices Building Microservices: Using an API Gateway Building Microservices: Inter-Process Communication in a Microservices Arch 阅读全文
posted @ 2019-09-08 21:14 李白与酒 阅读(133) 评论(0) 推荐(0) 编辑
摘要: Reference: http://www.programcreek.com/2013/09/top-8-diagrams-for-understanding-java/ A diagram is sometimes worth 1000 words. The following diagrams 阅读全文
posted @ 2019-09-08 20:35 李白与酒 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 数据结构与算法 Reference https://linux.cn/article-7480-1.html https://www.cs.usfca.edu/~galles/visualization/Algorithms.html 阅读全文
posted @ 2019-09-02 14:51 李白与酒 阅读(560) 评论(0) 推荐(0) 编辑
摘要: 原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/17296603.html 拉取rocketmq镜像 docker pull apache/rocketmq:4.9.4 运行rmqnamesrv docker run -d --restart=alway 阅读全文
posted @ 2023-04-07 16:24 李白与酒 阅读(495) 评论(0) 推荐(0) 编辑
摘要: 原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/17183671.html 正向思维 伪代码 (oneStartTime <= otherStartTime && otherStartTime <= oneEndTime) || (oneStartTim 阅读全文
posted @ 2023-03-06 14:11 李白与酒 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/17135599.html Maven Dependency <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</arti 阅读全文
posted @ 2023-02-19 21:01 李白与酒 阅读(356) 评论(0) 推荐(0) 编辑
摘要: 原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/17049850.html 使用如下语句查询mysql当前version select version(); 查出 5.7.40 使用如下语句查询mysql当前的sql mode select @@sql_ 阅读全文
posted @ 2023-01-13 15:44 李白与酒 阅读(440) 评论(0) 推荐(0) 编辑
摘要: 原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/16931587.html 背景: 当使用git clone 项目代码的时候,由于输错了账号和密码,导致无法再次 clone 的情况 解决方案: 打开控制面板 Control Panel\User Acco 阅读全文
posted @ 2022-11-28 10:42 李白与酒 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/15654570.html 过期策略 定时删除 在设置 key 的过期时间的同时,创建一个定时器,让定时器在 key 的过期时间来临时,立即执行对 key 的删除操作。 惰性删除 适用于 很多的 key 可 阅读全文
posted @ 2021-12-07 10:05 李白与酒 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/15649244.html #{} 是预编译处理 MyBatis在处理的时候,会将sql中的 #{} 替换为 ? 号,调用PreparedStatement 的 set 方法来赋值,可以有效地防止SQL注入 阅读全文
posted @ 2021-12-06 11:38 李白与酒 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/15618581.html Project Directory Maven Dependency <?xml version="1.0" encoding="UTF-8"?> <project xmlns= 阅读全文
posted @ 2021-11-29 11:26 李白与酒 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/15268554.html application.properties # thread pool schedule config spring.task.scheduling.thread-name-p 阅读全文
posted @ 2021-09-14 17:17 李白与酒 阅读(921) 评论(0) 推荐(0) 编辑
摘要: 原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/15229906.html Project Directory Maven Dependency <?xml version="1.0" encoding="UTF-8"?> <project xmlns= 阅读全文
posted @ 2021-09-08 13:28 李白与酒 阅读(491) 评论(0) 推荐(0) 编辑