摘要: 目录 双写一致性 1、 简介 redis是一个key-value存储系统。和Memcached类似,它支持存储的value类型相对更多,包括string(字符串)、list(链表)、set(集合)、zset(sorted set --有序集合)和hash(哈希类型)。这些数据类型都支持push/po 阅读全文
posted @ 2020-07-23 23:03 耗油炒白菜 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 短信接口频率限制 # throttlings.py from rest_framework.throttling import SimpleRateThrottle class SMSThrottling(SimpleRateThrottle): scope = 'sms' def get_cach 阅读全文
posted @ 2020-07-23 20:40 耗油炒白菜 阅读(169) 评论(0) 推荐(0) 编辑