
后端杂文
Linux系统相关,Ubuntu、Centos、Nginx、容器技术(Docker)、Python部署相关、虚拟环境(virtualenv)、uWSGI 、Supervisor、Celery 任务队里 (短信验证码,邮件)
最新博文
-
Linux 清理15天的日志
#!/bin/sh
rm -vrf $(find /var/log -type d -mtime +15) and
rm -vrf $(find /var/log -type f -mtime +15) and
echo "Successfully deleted service logs."Tdou2022-04-02【后端杂文】
阅读更多 -
Redis击穿、穿透、雪崩产生原因以及解决思路
https://www.cnblogs.com/Courage129/p/14348720.html
https://www.cnblogs.com/xichji/p/11286443.html
https://blog.csdn.net/lin777lin/article/details/105666839Tdou2021-05-19【后端杂文】
阅读更多