web站点相关解决方案

邮箱或手机验证码存储解决方案:

  1. 使用web框架自带的缓存系统,比如django中自带的cache
1
2
3
4

from django.core import cache
cache.set('key', 'value', 10) #键,值和过期时间
cache.get('key', 'not fount or has expired')
  1. 使用redis存储:
1
2
3

redis_db = RedisDB()
redis_db.set(phone=username, val=code, ex=60*10)