摘要: 一、optimize table会重组表和索引数据,磁盘空间被回收: 1、创建临时表:与原表结构相同;2、复制数据:将原表数据复制到临时表中;3、优化数表:复制时,MySQL会重新整理和重组数据,去除碎片,提高数据连续性;4、重命名表:将临时表重命名为原表。 optimize table your_ 阅读全文
posted @ 2024-09-14 16:57 杜子烟 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 引入包 <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>5.8.31</version> </dependency> import cn.hutool.core.map.Ma 阅读全文
posted @ 2024-08-26 11:09 杜子烟 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 需要安装 nuget 包 Microsoft.Extensions.Configuration 、Microsoft.Extensions.Configuration.FileExtensions 、Microsoft.Extensions.Configuration.Json、NLog using 阅读全文
posted @ 2024-07-05 18:25 杜子烟 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 安装全局工具: # 安装全局工具 dotnet tool install --global Microsoft.Playwright.CLI # 创建项目 dotnet new console -n Console1 cd Console1 # 安装依赖 dotnet add package Mic 阅读全文
posted @ 2024-07-04 15:44 杜子烟 阅读(313) 评论(0) 推荐(0) 编辑
摘要: MYSQL SELECT table_name, table_rows FROM information_schema.tables WHERE table_schema = 'your_database_name' ORDER BY table_rows DESC; Oracle SELECT t 阅读全文
posted @ 2024-06-13 17:41 杜子烟 阅读(71) 评论(0) 推荐(0) 编辑
摘要: C#使用RSA加密解密 /// <summary> /// RSA加密解密 /// </summary> public class RSAHelper { /// <summary> /// 生成公钥和私钥 /// </summary> /// <param name="keySize">密钥大小 阅读全文
posted @ 2024-06-05 11:20 杜子烟 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 1.DataX3.0开源版本,rdbms里面默认是达梦7的驱动,因此,如果像链接达梦8需要替换驱动。需要将达梦8的驱动放在D:\datax\lib、D:\datax\plugin\reader\rdbmsreader\lib和D:\datax\plugin\reader\rdbmswriter\li 阅读全文
posted @ 2024-05-17 14:19 杜子烟 阅读(987) 评论(0) 推荐(0) 编辑
摘要: 1.下载DataX并解压(本地环境安装有python)DataX/userGuid.md at master · alibaba/DataX (github.com) job文件夹下存放数据同步的json脚本 { "job": { "setting": { "speed": { "channel": 阅读全文
posted @ 2024-05-16 16:03 杜子烟 阅读(294) 评论(0) 推荐(0) 编辑
摘要: #查看jvm进程pid jps #列出所有信号名称 kill -l # Windows下信号常量值 # 简称 全称 数值 # INT SIGINT 2 Ctrl+C中断 # ILL SIGILL 4 非法指令 # FPE SIGFPE 8 floating point exception(浮点异常) 阅读全文
posted @ 2024-05-06 17:23 杜子烟 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 1. <style> html { filter: grayscale(1); -webkit-filter:grayscale(1); } </style> 2. <html style="filter:grayscale(1);-webkit-filter:grayscale(1)"> </ht 阅读全文
posted @ 2023-02-21 09:36 杜子烟 阅读(26) 评论(0) 推荐(0) 编辑