摘要: redis的pipeline使用 1.pipeline原理 redis基本语法:https://www.cnblogs.com/xiaonq/p/7919111.html redis四篇:https://www.cnblogs.com/xiaonq/category/1544586.html 1.1 阅读全文
posted @ 2020-10-08 19:07 DELT_whirte 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 注册完善及检测用户及手机号码 1.django添加检查用户名和手机号数量接口 1.1 在user/urls.py中添加 urlpatterns = [ path('count/', views.RegCountView.as_view()), # 查询用户名手机号使用量的视图, /user/coun 阅读全文
posted @ 2020-10-08 17:22 DELT_whirte 阅读(283) 评论(0) 推荐(0) 编辑
摘要: selery配置,及用容联云发送短信 1.celery配置与基本使用 1.1 安装celery pip install celery @ https://github.com/celery/celery/tarball/master 1.2 新建celery/main.py配置celery # ce 阅读全文
posted @ 2020-10-08 17:13 DELT_whirte 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 1.vue发送短信逻辑 前端函数如下,js方法代码无需更改,前端代码逻辑在components\common\lab_header.vue 只需要修改components\axios_api\http.js中调用的后端地址 // axios.defaults.baseURL = "http://12 阅读全文
posted @ 2020-10-08 17:08 DELT_whirte 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 1.Celery介绍 1.1 celery应用举例 Celery 是一个 基于python开发的分布式异步消息任务队列,通过它可以轻松的实现任务的异步处理,如果你的业务场景中需要用到异步任务,就可以考虑使用celery 你想对100台机器执行一条批量命令,可能会花很长时间 ,但你不想让你的程序等着结 阅读全文
posted @ 2020-10-08 07:24 DELT_whirte 阅读(129) 评论(1) 推荐(0) 编辑