复习
"""
1、git项目开发
提供公钥成为开发者、copy项目、开发项目
先commit、再pull(可能出现冲突)、最后push
特殊功能可以新建dev的子分支进行开发:git checkout -b 子分支,
切换回dev分支合并子分支内容:git merge 子分支
2、短信
注册并申请通信短信服务应用
安装指定模块,根据申请的应用配置得到发送短信的对象,对象调用方法完成短信的发送
二次封装短信模块
3、redis
内存、no-sql、可以缓存(数据奔溃可以修复)、数据可持久化、支持高并发
"""
今日内容
"""
1、redis使用
2、登录注册接口
3、celery异步任务框架
"""
redis
基础命令
启动服务:
>: redis-server &
启动客户端连接redis
>: redis-cli -h localhost -p 6379 -n 数据库编号(0~15)
连接成功后切换数据库
>: select 数据库编号
哈希操作
"""
常用方法:
单增:hset key field value
单查:hget key field
所有键值:hgetall key
单删:hdel key field
所有key:hkeys key
所有值:hvals key
"""
列表操作
"""
右增: rpush key v1 v2 ... vn
左增: lpush key v1 v2 ... vn
修改: lset key index value
左删: lpop key
右删: rpop key
插入:linsert key before|after old_value new_value
区间:lrange key begin_index end_index
"""
集合操作
"""
增:sadd key v1 v2 ... vn
差集:sdiff key1 key2
并集:sinter key1 key2
交集:sunion key1 key2
查:smembers key
随机删:spop key
"""
有序集合
"""
增:zadd key score1 value1 score2 value2 ... scoren valuen
区间个数:zcount key begin_score end_score
排行低到高:zrange key begin_index end_index
排行高到低:zrevrange key begin_index end_index
"""
python使用redis
依赖
>: pip3 install redis
直接使用
import redis
r = redis.Redis(host='127.0.0.1', port=6379)
连接池使用
import redis
pool = redis.ConnectionPool(host='127.0.0.1', port=6379)
r = redis.Redis(connection_pool=pool)
缓存使用:要额外安装 django-redis
CACHES = {
"default": {
"BACKEND": "django_redis.cache.RedisCache",
"LOCATION": "redis://127.0.0.1:6379",
"OPTIONS": {
"CLIENT_CLASS": "django_redis.client.DefaultClient",
"CONNECTION_POOL_KWARGS": {"max_connections": 100}
}
}
}
from django.core.cache import cache
cache.set('token', 'header.payload.signature', 10)
token = cache.get('token')
手机验证接口
from rest_framework.views import APIView
from .models import User
from utils.response import APIResponse
import re
class MobileAPIView(APIView):
def post(self, request, *args, **kwargs):
mobile = request.data.get('mobile')
if not mobile or not re.match(r'^1[3-9]\d{9}$', mobile):
return APIResponse(1, '数据有误')
try:
User.objects.get(mobile=mobile)
return APIResponse(2, '已注册')
except:
return APIResponse(0, '未注册')
发送短信接口
from libs import txsms
from django.core.cache import cache
class SMSAPIView(APIView):
def post(self, request, *args, **kwargs):
mobile = request.data.get('mobile')
if not mobile or not re.match(r'^1[3-9]\d{9}$', mobile):
return APIResponse(2, '数据有误')
code = txsms.get_code()
result = txsms.send_sms(mobile, code, 5)
if not result:
return APIResponse(1, '短信发送失败')
cache.set('sms_%s' % mobile, code, 5 * 60)
return APIResponse(0, '短信发送成功')
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
· Spring AI + Ollama 实现 deepseek-r1 的API服务和调用
· 《HelloGitHub》第 106 期
· 数据库服务器 SQL Server 版本升级公告
· 深入理解Mybatis分库分表执行原理
· 使用 Dify + LLM 构建精确任务处理应用