Django - 缓存


缓存某些内容是为了保存昂贵的计算结果,以便下次需要时不必执行它。以下是解释缓存如何工作的伪代码 -

given a URL, try finding that page in the cache

if the page is in the cache:
   return the cached page
else:
   generate the page
   save the generated page in the cache (for next time)
   return the generated page

Django 带有自己的缓存系统,可以让您保存动态页面,以避免在需要时再次计算它们。Django Cache 框架的优点是你可以缓存 -

  • 特定视图的输出。
  • 模板的一部分。
  • 您的整个网站。

要在 Django 中使用缓存,首先要做的是设置缓存所在的位置。缓存框架提供了不同的可能性——缓存可以保存在数据库、文件系统或直接内存中。设置是在项目的settings.py文件中完成的。

在数据库中设置缓存

只需在项目 settings.py 文件中添加以下内容 -

CACHES = {
   'default': {
      'BACKEND': 'django.core.cache.backends.db.DatabaseCache',
      'LOCATION': 'my_table_name',
   }
}

为了使其工作并完成设置,我们需要创建缓存表“my_table_name”。为此,您需要执行以下操作 -

python manage.py createcachetable

在文件系统中设置缓存

只需在项目 settings.py 文件中添加以下内容 -

CACHES = {
   'default': {
      'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',
      'LOCATION': '/var/tmp/django_cache',
   }
}

在内存中设置缓存

这是最有效的缓存方式,要使用它,您可以根据您为内存缓存选择的 Python 绑定库使用以下选项之一 -

CACHES = {
   'default': {
      'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
      'LOCATION': '127.0.0.1:11211',
   }
}

或者

CACHES = {
   'default': {
      'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
      'LOCATION': 'unix:/tmp/memcached.sock',
   }
}

缓存整个站点

在 Django 中使用缓存的最简单方法是缓存整个站点。这是通过编辑项目 settings.py 中的 MIDDLEWARE_CLASSES 选项来完成的。需要将以下内容添加到选项中 -

MIDDLEWARE_CLASSES += (
   'django.middleware.cache.UpdateCacheMiddleware',
   'django.middleware.common.CommonMiddleware',
   'django.middleware.cache.FetchFromCacheMiddleware',
)

请注意,这里的顺序很重要,Update 应该在 Fetch 中间件之前。

然后在同一个文件中,您需要设置 -

CACHE_MIDDLEWARE_ALIAS – The cache alias to use for storage.
CACHE_MIDDLEWARE_SECONDS – The number of seconds each page should be cached.

缓存视图

如果您不想缓存整个站点,您可以缓存特定视图。这是通过使用Django 附带的cache_page装饰器来完成的。假设我们要缓存viewArticles视图的结果 -

from django.views.decorators.cache import cache_page

@cache_page(60 * 15)

def viewArticles(request, year, month):
   text = "Displaying articles of : %s/%s"%(year, month)
   return HttpResponse(text)

正如您所看到的,cache_page需要您希望缓存视图结果的秒数作为参数。在上面的示例中,结果将缓存 15 分钟。

注意- 正如我们之前所看到的,上面的视图映射到 -

urlpatterns = patterns('myapp.views',
   url(r'^articles/(?P<month>\d{2})/(?P<year>\d{4})/', 'viewArticles', name = 'articles'),)

由于 URL 带有参数,因此每个不同的调用将被单独缓存。例如,对 /myapp/articles/02/2007 的请求将单独缓存到 /myapp/articles/03/2008 。

缓存视图也可以直接在 url.py 文件中完成。那么下面的结果和上面的结果是一样的。只需编辑 myapp/url.py 文件并将相关的映射 URL(上面)更改为 -

urlpatterns = patterns('myapp.views',
   url(r'^articles/(?P<month>\d{2})/(?P<year>\d{4})/', 
   cache_page(60 * 15)('viewArticles'), name = 'articles'),)

当然,myapp/views.py 中不再需要它。

缓存模板片段

您还可以缓存模板的部分内容,这是通过使用缓存标签来完成的。让我们以hello.html模板为例 -

{% extends "main_template.html" %}
{% block title %}My Hello Page{% endblock %}
{% block content %}

Hello World!!!<p>Today is {{today}}</p>
We are
{% if today.day == 1 %}

the first day of month.
{% elif today == 30 %}

the last day of month.
{% else %}

I don't know.
{%endif%}

<p>
   {% for day in days_of_week %}
   {{day}}
</p>

{% endfor %}
{% endblock %}

为了缓存内容块,我们的模板将变成 -

{% load cache %}
{% extends "main_template.html" %}
{% block title %}My Hello Page{% endblock %}
{% cache 500 content %}
{% block content %}

Hello World!!!<p>Today is {{today}}</p>
We are
{% if today.day == 1 %}

the first day of month.
{% elif today == 30 %}

the last day of month.
{% else %}

I don't know.
{%endif%}

<p>
   {% for day in days_of_week %}
   {{day}}
</p>

{% endfor %}
{% endblock %}
{% endcache %}

正如您在上面看到的,缓存标记将采用 2 个参数 - 您希望缓存块的时间(以秒为单位)以及为缓存片段指定的名称。