Skip to main content

a tag for improving django template fragment cache

Project description

Django Fragment Cache

Django provides template fragment caching, such as :

{% load cache %}
{% cache 500 sidebar %}
    .. sidebar ..
{% endcache %}

But the variable sidebar still to be passed to the template every time, otherwise the fragment is blank when the cache expires.

If the data acquisition process is time consuming, then the fragment cache is to exist in name only.

So, this module provides another way to use the template cache.

How to use?

Install

pip install django-fragment-cache

Install Requires:

  • django >= 2

edit your settings.py to add fragment_cache to your NSTALLED_APPS.

INSTALLED_APPS = (
    ...
    'fragment_cache',
    ...
)

Use

you need provide a callable object to tell module how to get data, and the function return a dict.

only call function when cache expires.

import time
def get_data(num=10):
    time.sleep(3)
    return {'nums': list(range(num))}

def test(request):
    return render(request, 'test.html', {'get_data': get_data})

The {% fragment_cache %} template tag is similar to {% cache %} , for example:

{% load fragment_cache %}
{% fragment_cache 500 get_data %}
    <ul>
        {% for i in nums %}
            <li> {{ i }}</li>
        {% endfor %}
    </ul>
{% endfragment_cache %}

Sometimes, you might want to cache multiple copies of a fragment depending on some dynamic data that appears inside the fragment.

This allows different parameters to be cached to cache different results, for example:

{% load fragment_cache %}
{% fragment_cache 500 get_data 6 %}
    <ul>
        {% for i in nums %}
            <li> {{ i }}</li>
        {% endfor %}
    </ul>
{% endfragment_cache %}

Enjoy yourself.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_fragment_cache-0.5.1-py3-none-any.whl (3.7 kB view details)

Uploaded Python 3

File details

Details for the file django_fragment_cache-0.5.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_fragment_cache-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 83dd438d617900929c65bfcfbe9fd436e8437129dc15ed23c0b9b7c31e3966bf
MD5 ae022aee328dbb9a50e4358e61d1ab2d
BLAKE2b-256 d0e4da1fa1bd0c378f7afdce473e58b1a66d7380d6a40c5342077c50dc328671

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page