上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: 1、通过show processlist找到耗时最长的 mysql> show processlist; + + + + + + + + + | Id | User | Host | db | Command | Time | State | Info | + + + + + + + + + | 1 阅读全文
posted @ 2021-11-15 11:01 西门长海 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.luofan.net/post/80.html?ivk_sa=1024320u 阅读全文
posted @ 2021-11-11 08:52 西门长海 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 准备编译环境 sudo apt install --no-install-recommends build-essential autoconf libtool \ libssl-dev gawk debhelper dh-systemd init-system-helpers pkg-config 阅读全文
posted @ 2021-11-09 16:53 西门长海 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 通过status命令,查看Slow queries这一项,如果值长时间>0,说明有查询执行时间过长 mysql> status; mysql Ver 11.18 Distrib 3.23.58, for redhat-linux-gnu (i386) Connection id: 53 Curren 阅读全文
posted @ 2021-11-08 19:02 西门长海 阅读(2490) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/crazymakercircle/p/11704077.html 阅读全文
posted @ 2021-11-05 17:52 西门长海 阅读(54) 评论(0) 推荐(0) 编辑
摘要: https://github.com/macrozheng/springcloud-learning/blob/master/micro-sa-token/pom.xml https://zhuanlan.zhihu.com/p/405992809 阅读全文
posted @ 2021-11-05 14:32 西门长海 阅读(71) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/wangchengaihuiming/article/details/99712467 阅读全文
posted @ 2021-11-05 14:04 西门长海 阅读(51) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/duanxz/p/14919960.html 阅读全文
posted @ 2021-11-05 13:38 西门长海 阅读(48) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_42189048/article/details/118152954 https://blog.csdn.net/weixin_42189048/article/details/118177820 阅读全文
posted @ 2021-11-05 11:47 西门长海 阅读(33) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/AXW9GlRa1ARQpojhfV3dhg 阅读全文
posted @ 2021-11-05 10:37 西门长海 阅读(66) 评论(0) 推荐(0) 编辑
摘要: https://tech.meituan.com/2019/02/14/data-security-platform-construction-practice-jiangjunling.html 阅读全文
posted @ 2021-11-04 20:52 西门长海 阅读(51) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/TW-p1n3UIn4eerj8rU5fmg 阅读全文
posted @ 2021-11-04 16:32 西门长海 阅读(27) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/ngvRyBEVSqA1JVlB9E1ebg 阅读全文
posted @ 2021-11-04 16:29 西门长海 阅读(31) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/z5WErxzZ9U6VyK8gltO6RA https://juejin.cn/post/6844903887871148039 https://juejin.cn/post/6844903872171868174 阅读全文
posted @ 2021-11-04 16:18 西门长海 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 1、引言 在开发中,有时会遇到批量处理的业务。如果单线程处理,速度会非常慢,可能会导致上游超时。这是就需要使用多线程开发。 创建线程时,应当使用线程池。一方面避免了处理任务时创建销毁线程开销的代价,另一方面避免了线程数量膨胀导致的过分调度问题,保证了对内核的充分利用。 可以使用J.U.C提供的线程池 阅读全文
posted @ 2021-11-04 12:48 西门长海 阅读(2222) 评论(0) 推荐(0) 编辑
摘要: 方法1: UPDATE lpmgmt t1 LEFT JOIN lpmgmt_other t2 ON t2.lpmgmt_id = t1.id SET t1.lpEntityType2 = t2.lpEntityType2 方法2: update table1 set field1=table2.f 阅读全文
posted @ 2021-11-04 10:04 西门长海 阅读(4296) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/zhangxuetao/p/13095526.html 阅读全文
posted @ 2021-11-04 09:58 西门长海 阅读(2084) 评论(0) 推荐(0) 编辑
摘要: ​ 地址 https://github.com/xkcoding/spring-boot-demo 说明 spring boot demo 是一个用来深度学习并实战 spring boot 的项目,目前总共包含 65 个集成demo,已经完成 53 个。 该项目已成功集成 actuator(监控) 阅读全文
posted @ 2021-11-02 15:39 西门长海 阅读(407) 评论(0) 推荐(0) 编辑
摘要: ​ 地址 https://github.com/halo-dev/halo 说明 ✍ An excellent open source blog publishing application. | 一个优秀的开源博客发布应用。 https://halo.run 简介 Halo [ˈheɪloʊ],意 阅读全文
posted @ 2021-11-02 15:36 西门长海 阅读(74) 评论(0) 推荐(0) 编辑
摘要: ​ 地址 https://github.com/lenve/vhr?utm_source=gold_browser_extension 说明 微人事是一个前后端分离的人力资源管理系统,项目采用SpringBoot+Vue开发。 项目介绍 微人事是一个前后端分离的人力资源管理系统,项目采用 Sprin 阅读全文
posted @ 2021-11-02 15:35 西门长海 阅读(1387) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页