摘要:
web开发工具 阅读全文
摘要:
Celery简介 官方文档 Celery 官网:http://www.celeryproject.org/ Celery 官方文档英文版:http://docs.celeryproject.org/en/latest/index.html Celery 官方文档中文版:http://docs.jin 阅读全文
摘要:
缓存穿透 所有的请求都不在缓存中,直接穿过缓存访问数据库,但数据库也没有这个数据 ### 缓存穿透 #描述: 缓存穿透是指缓存和数据库中都没有的数据,而用户不断发起请求,如发起为id为“-1”的数据或id为特别大不存在的数据。这时的用户很可能是攻击者,攻击会导致数据库压力过大。 #解决方案: 1 接 阅读全文
摘要:
django中使用redis有两种方式: 通过redis模块直接操作redis数据库 通过django-redis模块使用django的缓存cache【下文介绍内容】 下载安装 pip install django-redis 配置缓存redis 将缓存存储位置配置到redis中:settings. 阅读全文