web站点相关解决方案 发表于 2017-06-22 | 分类于 python | 阅读次数: 邮箱或手机验证码存储解决方案: 使用web框架自带的缓存系统,比如django中自带的cache 1234from django.core import cachecache.set('key', 'value', 10) #键,值和过期时间cache.get('key', 'not fount or has expired') 使用redis存储: 123redis_db = RedisDB()redis_db.set(phone=username, val=code, ex=60*10)