摘要:
在django根目录下创建一个文件夹,名字随便起 mycelery sms __init.py task.py __init__.py config.py main.py # 以上是目录的基本结构,email和sms是发邮件和短信的任务,会占用大量的时间,我们就需要采用celery来进行异步执行 阅读全文
摘要:
方式一 新建一个py文件,在视图类中导入 utils>redis_pool: import redis Pool=redis.ConnectionPool(host='127.0.0.1',port=6379,max_connections=100) views: from django.short 阅读全文
摘要:
预编译 make make install 下载nginx源码包 nginx网站:http://nginx.org/en/download.html wget http://nginx.org/download/nginx-1.16.1.tar.gz 下载文件 tar xf nginx-1.16.1 阅读全文