上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页

2021年9月16日

mongoexport/mongimport命令详解

摘要: mongoexpot 命令参考文档: https://docs.mongodb.com/v4.2/reference/program/mongoexport/ 创建测试数据 use czg for(i=1;i<=100;i++){db.t1.insert({id:i})} for(i=1;i<=10 阅读全文

posted @ 2021-09-16 20:00 柴米油盐酱醋 阅读(1209) 评论(0) 推荐(0) 编辑

2021年9月15日

mongodump/mongorestore命令详解

摘要: Mongodump 命令参考文档: https://docs.mongodb.com/v4.2/reference/program/mongodump/#bin.mongodump 1、mongodump --help 详解: general options: --help 输出帮助说明 --ver 阅读全文

posted @ 2021-09-15 16:42 柴米油盐酱醋 阅读(7791) 评论(0) 推荐(1) 编辑

2021年9月14日

redis stream类型 常用命令

摘要: 参考文档:https://www.runoob.com/redis/redis-stream.html https://wiki.shileizcc.com/confluence/display/RED/Redis+Stream https://blog.csdn.net/guanking19/ar 阅读全文

posted @ 2021-09-14 16:15 柴米油盐酱醋 阅读(527) 评论(0) 推荐(0) 编辑

2021年9月8日

system_time_zone参数值由来

摘要: 参考文档: https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_system_time_zone 无意间注意到 system_time_zone 参数值经常是 UTC,CST,WIB 等. 查看帮助文 阅读全文

posted @ 2021-09-08 16:07 柴米油盐酱醋 阅读(1114) 评论(0) 推荐(0) 编辑

2021年9月2日

MySQL加密解密函数AES_ENCRYPT AES_DECRYPT

摘要: 官方文档: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html#function_aes-encrypt 加密函数 AES_ENCRYPT(str,key) 例:select AES_ENCRYPT('字符串','mim 阅读全文

posted @ 2021-09-02 19:49 柴米油盐酱醋 阅读(3307) 评论(0) 推荐(1) 编辑

2021年8月30日

MySQL开启SSL加密

摘要: 摘自: https://www.docs4dev.com/docs/zh/mysql/5.7/reference/creating-ssl-files-using-openssl.html#creating-ssl-files-using-openssl-unix-command-line http 阅读全文

posted @ 2021-08-30 18:35 柴米油盐酱醋 阅读(1534) 评论(0) 推荐(0) 编辑

MDL锁获取顺序和优先先

摘要: 官方文档: https://dev.mysql.com/doc/refman/5.7/en/metadata-locking.html 如果给定的锁有多个等待者,则满足最高优先级的锁请求,写锁请求的优先级高于读锁请求。 但是,如果 max_write_lock_count设置为某个较低的值(比如 1 阅读全文

posted @ 2021-08-30 16:36 柴米油盐酱醋 阅读(304) 评论(0) 推荐(0) 编辑

explicit_defaults_for_timestamp 参数说明

摘要: 官方文档: https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_explicit_defaults_for_timestamp 命令行格式 --explicit-defaults-for-timest 阅读全文

posted @ 2021-08-30 14:24 柴米油盐酱醋 阅读(680) 评论(0) 推荐(0) 编辑

2021年8月16日

SSH端口转发

摘要: ssh -vNL 13306:172.16.252.129:3306 root@172.16.252.128 172.16.252.129:是最终访问机器 172.16.252.128:是下一跳机器 阅读全文

posted @ 2021-08-16 18:19 柴米油盐酱醋 阅读(65) 评论(0) 推荐(0) 编辑

2021年8月12日

MySQL数据库in 太多不走索引案例

摘要: https://dev.mysql.com/doc/refman/5.7/en/range-optimization.html Limiting Memory Use for Range Optimization To control the memory available to the rang 阅读全文

posted @ 2021-08-12 16:30 柴米油盐酱醋 阅读(2495) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页

导航