上一页 1 2 3 4 5 6 ··· 23 下一页
摘要: #一、前提 一个Excel的sheet页最多104万行数据 需分页处理-数据库分页或内存分页(这里需要注意内存大小问题) #二、处理思路 ##2.1、同步处理 *单线程处理-前端轮训等待时间过长,不可取 *多线程处理-前端依然轮训等待时间过长,后端还会因为大量线程消耗内存,导致内存不够用,不可取 # 阅读全文
posted @ 2023-03-20 17:17 npe0 阅读(363) 评论(0) 推荐(0)
摘要: #1、命令列表 https://arthas.aliyun.com/doc/commands.html #2、arthas-idea-插件 arthas idea plugin 使用文档 爱上Java诊断利器Arthas之Arthas idea plugin 的前世今生 #3、OGNL OGNL 阅读全文
posted @ 2023-03-20 15:29 npe0 阅读(71) 评论(0) 推荐(0)
摘要: 转载: http://fatmouse.xyz/2016/05/10/2016-05-10-find-grep-xargs-and-pipe/ 1、参数与标准输入 这两个词我们在Linux命令中是很常见的。但是参数和标准输入其实是有区别的。我们日常使用的很多命令,例如ls -lah .中。l, a, 阅读全文
posted @ 2023-03-17 18:22 npe0 阅读(176) 评论(0) 推荐(0)
摘要: 参考:https://zhuanlan.zhihu.com/p/427358291 阅读全文
posted @ 2022-05-25 15:34 npe0 阅读(20) 评论(0) 推荐(0)
摘要: 参考 阅读全文
posted @ 2022-05-25 14:49 npe0 阅读(21) 评论(0) 推荐(0)
摘要: 参考:https://zhuanlan.zhihu.com/p/375282954 阅读全文
posted @ 2022-05-25 14:48 npe0 阅读(33) 评论(0) 推荐(0)
摘要: ``` SHOW VARIABLES LIKE '%slow%'; SHOW GLOBAL STATUS LIKE '%slow%'; SHOW PROCESSLIST; SHOW VARIABLES LIKE 'max_connections'; SHOW GLOBAL STATUS LIKE ' 阅读全文
posted @ 2022-05-25 14:44 npe0 阅读(31) 评论(0) 推荐(0)
摘要: 键盘空格的ASCII码为32 不间断空格(html页面上是 )的ASCII码为160 用普通的replaceAll("\\s*","")是无法剔除的 需要使用unicode码\u00A0来做移除即为replaceAll("\\u00A0","") 阅读全文
posted @ 2022-05-22 23:38 npe0 阅读(43) 评论(0) 推荐(0)
摘要: public class WebConfigUtil { public static final String YML_NAME = "application.yml"; private static Properties readProperties(String... confFile) { f 阅读全文
posted @ 2022-05-16 16:49 npe0 阅读(365) 评论(0) 推荐(0)
摘要: https://cloud.tencent.com/developer/article/1862618 阅读全文
posted @ 2022-04-19 10:23 npe0 阅读(21) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 23 下一页