摘要: 1. git远端获取最新的分支到local,git clone 2.创建本地分支 git create branch 3.开发代码,完成后需要合并到master switch master 先切换到master,先push获取服务端最新的代码,然后右键merge 提交记录commit 这样maste 阅读全文
posted @ 2022-07-27 17:12 chinadba 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 加索引或者truncate之前一定要将所有的插入动作停掉。 阅读全文
posted @ 2022-07-27 08:58 chinadba 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 1.查看timing和pending 发现偶尔pengding时间很长,查看timing,发现stalled超长,就能判断出现了阻塞,其他请求都会排队。 2.找到耗时较长的请求,分析为什么会卡,解决掉就可以。 阅读全文
posted @ 2022-07-26 17:46 chinadba 阅读(82) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-07-22 15:50 chinadba 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 转自https://www.cnblogs.com/shb190802/p/13647203.html。 最近在考虑一个树状结构存储。 最终需要将list转化为tree格式 源数据示例 源数据共401条 [{ "menuId" : "5f50c5fb8f0d74536bbfb7a4", "menuN 阅读全文
posted @ 2022-07-21 14:17 chinadba 阅读(417) 评论(0) 推荐(0) 编辑
摘要: <Connector executor="tomcatThreadPool" port="80" protocol="HTTP/1.1" connectionTimeout="20000" compression="on" compressionMinSize="2048" noCompressio 阅读全文
posted @ 2022-07-21 14:15 chinadba 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-07-14 09:24 chinadba 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1.增加分析报告 package.json增加如下配置 "build": "node --max-old-space-size=15000 \"node_modules/@angular/cli/bin/ng\" build --prod --aot --vendor-chunk=false --b 阅读全文
posted @ 2022-05-12 19:51 chinadba 阅读(38) 评论(0) 推荐(0) 编辑
摘要: webpack打包压缩混淆_Webpack打包后体积过大的优化思路 1.去除devtool选项 这只适用于开发环境,这会造成打包的文件往往有几M,所以在生产环境必须去除此配置。 2.分离CSS 安装插件: npm install extract-text-webpack-plugin --save 阅读全文
posted @ 2022-05-11 09:38 chinadba 阅读(872) 评论(0) 推荐(0) 编辑
摘要: select c.*,coalesce(d.incidentTotal,0) as total from (select a.rq,b.dm,b.mc from (select to_char(daytime::date,'mm-dd') as rq from generate_series(num 阅读全文
posted @ 2021-12-28 17:08 chinadba 阅读(567) 评论(0) 推荐(0) 编辑