啥也没写
发布时间:2018-12-10 16:29:27
mysqldump备份还原和mysqldump导入导出语句大全详解mysqldump备份:mysqldump -u用户名 -p密码 -h主机 数据库 a -w "sql条件" --lock-all-tables > 路径mysqldump还原:mysqldump -u用户名 -p密码 -h主机 数据库 < 路径mysqldump按条件导出:mysqldump -u用户名 -p密码 -h主机 数据库 a --where .........【阅读全文】
发布时间:2018-12-05 16:05:10
增加Http头cloudFront-Is-Mobile-Viewer(cloudfront默认已经创建),并转发回源站,然后配置源站nginx,对头部信息进行判断,再实现跳转然后NGINX配置: if ($http_cloudFront_is_mobile_viewer = true) { set $mobile_request true; } i.........【阅读全文】
发布时间:2018-12-03 10:33:16
master:locust -f my_loucstfile.py --masterslave:locust -f my_locustfile.py --slave --master-host=192.168.0.14参考:http://shiyuanjie.cn/2017/06/03/Locust%E5%88%86%E5%B8%83%E5%BC%8F%E6%B5%8B%E8%AF%95/......【阅读全文】
发布时间:2018-12-01 18:38:31
https://zhuanlan.zhihu.com/p/22165241https://www.cnblogs.com/gomysql/p/6651513.html......【阅读全文】
发布时间:2018-11-30 15:45:58
um install lemon -ywget https://github.com/antirez/redis/archive/4.0.zipunzip 4.0.zipcd redis-4.0makegit clone https://github.com/RedisLabsModules/RediSearch.gitcd RediSearch/srcmake allredis-server --loadmodule ./redisearch.so转:http://www.toutiao.com/i6438965093865619970/?tt_from=weixi.........【阅读全文】