摘要:
https://blog.csdn.net/zty1317313805/article/details/121931692 spring: rabbitmq: host: rabbitmq port: 5672 username: guest password: guest connection-t 阅读全文
摘要:
【ElasticSearch】去掉重复数据 https://blog.csdn.net/qq_33697094/article/details/109735592 https://blog.csdn.net/qq_33697094/article/details/109735592 https:// 阅读全文
摘要:
【MySQL】优化 性能查看 1、解释SQL,explain 2、show profile mysql 5.1以后版本引入的 开启 mysql> set profiling = 1; 给每一个查询生成一个整形的标识 mysql> show profiles; 查看查询具体耗时在哪里 mysql> s 阅读全文
摘要:
增加简体繁体转换按钮 1、增加工具栏按钮,neditor\neditor.config.js toolbars: [ [ "selectall", // 全选 ... 'simple', // 简体 'tradition', // 繁体 ] ] 2、添加按钮提示文字,neditor\i18n\zh- 阅读全文
摘要:
https://blog.csdn.net/qq_44749491/article/details/130123065 中国一共分了5个时区 哈尔滨 Asia/Harbin 长白时区GMT+8:30上海 Asia/Shanghai 标准时区 GMT+8重庆 Asia/Chongqing 陇蜀时区GM 阅读全文
摘要:
【Redis】配置 下载:https://download.redis.io/releases/ 【spring boot】配置 spring: redis: database: 5 host: redis port: 6379 password: dyt#88352636 timeout: 600 阅读全文
摘要:
安装 npm install --save vue-json-viewer 使用 import JsonViewer from 'vue-json-viewer' export default { name: 'logRecord', components:{ JsonViewer }, data( 阅读全文
摘要:
https://blog.csdn.net/u011149152/article/details/124292923 -n 禁用域名解析(即显示ip地址不显示域名),-t tcp,-u udp,-l listen,-p pid查看进程 查看进程监听的端口 netstat -nltp | grep 进 阅读全文
摘要:
导出 docker save -o 文件名 镜像 docker save -o /images/elasticsearch-7.13.4.tar docker.elastic.co/elasticsearch/elasticsearch:7.13.4 或者 docker save 镜像 > 文件名 阅读全文