上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 35 下一页
摘要: 【JMeter】准确的吞吐量定时器 阅读全文
posted @ 2022-08-13 11:09 翠微 阅读(473) 评论(0) 推荐(0) 编辑
摘要: awk 语法 格式1:前置命令 | awk [选项] '条件{编辑指令}' 格式2:awk [选项] '条件{编辑指令}' 文件 默认分隔符是空格和制表符,可以通过 -F分隔符指定 echo hello#world | awk -F# '{print $2}'结果 world 变量 $0表示整行文本 阅读全文
posted @ 2022-08-04 14:48 翠微 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 【ECMAScript】常用判断整理 1、判断是否 undefined 2、判断对象是否有函数 fn 对象 obj 1、判断是否undefined if (typeof(obj) 'undefined') { } 2、判断对象是否有函数 fn function hasFunction(fn) { i 阅读全文
posted @ 2022-08-03 13:46 翠微 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 【JaveSE】MD5加密 1、apache commons-codec.jar,一般工程,不引入spring的情况 import org.apache.commons.codec.digest.DigestUtils; /** * MD5加密之方法一 * @explain 借助apache工具类D 阅读全文
posted @ 2022-08-01 18:04 翠微 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 查看使用的时区 date -R 设置时区 # tzselect5,9,1,1 Please select a continent or ocean. 选择Asia Please select a country. 选择China Please select one of the following 阅读全文
posted @ 2022-08-01 10:06 翠微 阅读(249) 评论(0) 推荐(0) 编辑
摘要: TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block 磁盘使用量超过洪泛阶段水印,索引具有只读允许删除块 解决:扩充磁盘,重启ES 给磁盘扩容后关闭 阅读全文
posted @ 2022-07-30 22:16 翠微 阅读(3135) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zty1317313805/article/details/121931692 spring: rabbitmq: host: rabbitmq port: 5672 username: guest password: guest connection-t 阅读全文
posted @ 2022-07-29 14:41 翠微 阅读(421) 评论(0) 推荐(0) 编辑
摘要: 【ElasticSearch】去掉重复数据 https://blog.csdn.net/qq_33697094/article/details/109735592 https://blog.csdn.net/qq_33697094/article/details/109735592 https:// 阅读全文
posted @ 2022-07-28 15:00 翠微 阅读(569) 评论(0) 推荐(0) 编辑
摘要: 【MySQL】优化 性能查看 1、解释SQL,explain 2、show profile mysql 5.1以后版本引入的 开启 mysql> set profiling = 1; 给每一个查询生成一个整形的标识 mysql> show profiles; 查看查询具体耗时在哪里 mysql> s 阅读全文
posted @ 2022-07-22 11:08 翠微 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 增加简体繁体转换按钮 1、增加工具栏按钮,neditor\neditor.config.js toolbars: [ [ "selectall", // 全选 ... 'simple', // 简体 'tradition', // 繁体 ] ] 2、添加按钮提示文字,neditor\i18n\zh- 阅读全文
posted @ 2022-07-19 15:35 翠微 阅读(106) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 35 下一页