作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
如何更改 Memcached/Elasticache caching backend 的检索超时在 Django 中?
我正在使用 Amazon 的 Elasticache 在 Django 中缓存内容,我经常看到如下错误:
File "/usr/local/myproject/.env/lib/python2.7/site-packages/django/template/defaulttags.py", line 285, in render
return nodelist.render(context)
File "/usr/local/myproject/.env/lib/python2.7/site-packages/django/template/base.py", line 830, in render
bit = self.render_node(node, context)
File "/usr/local/myproject/.env/lib/python2.7/site-packages/django/template/base.py", line 844, in render_node
return node.render(context)
File "/usr/local/myproject/.env/lib/python2.7/site-packages/django/templatetags/static.py", line 109, in render
url = self.url(context)
File "/usr/local/myproject/.env/lib/python2.7/site-packages/django/contrib/staticfiles/templatetags/staticfiles.py", line 12, in url
return staticfiles_storage.url(path)
File "/usr/local/myproject/.env/lib/python2.7/site-packages/django/contrib/staticfiles/storage.py", line 136, in url
hashed_name = self.cache.get(cache_key)
File "/usr/local/myproject/.env/lib/python2.7/site-packages/django/core/cache/backends/memcached.py", line 64, in get
val = self._cache.get(key)
Error: error 31 from memcached_get(myproject:1:staticfiles:27e4bc0): A TIMEOUT OCCURRED
我尝试增加我的 Elasticache 集群中的节点数量,但没有效果。我的下一个想法是增加内存缓存检索的超时时间,但是 Django docs似乎没有为此提供选项。
有一个“TIMEOUT”选项,但它似乎定义了内容过期的默认时间,而不是对 memcached 服务器的 HTTP 请求的超时。
最佳答案
我采用的解决方案是将我的 Django 缓存后端切换到 django-ft-cache ,标准内存缓存后端的容错版本。所以现在,当发生周期性超时时,缓存只是绕过媒体的非缓存检索,而不是抛出 500 错误。
关于python - 如何在 Django 中设置 Memcached 检索超时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31613217/
我是一名优秀的程序员,十分优秀!