Easily make your Wagtail StreamBlock cacheable
Project description
wagtail_cache_block
This project add HTML fragment cache to your StreamField block in easy way
Background
In Wagtail community, it is popular to use the HTML fragment cache at page level.
This works fine in most of the time. But what if some different page have the same block data and some DB query need be run multiple times when rendering?
In this case, it make sense to make HTML fragment cache work on block level instead of page level.
How it works
cache_block is very similar with Django {% cache %} templatetag, it would pull data from block automatically and use the value to generate fragment cache key.
If value in any block field (even descendants of the block) has changed, new fragment key would be generated and new HTML fragment code would be saved to Cache.
cache_block would check if the page is preview mode, if the page if in preview mode, the HTML fragment cache would not be pulled from cache.
I have used it in my projects and the performance has been improved, especially for some page which contains many db query.
Quickstart
Install wagtail_cache_block:
pip install wagtail_cache_block
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'wagtail_cache_block.apps.WagtailCacheBlockConfig',
...
)
You can use it in StreamField for loop iteration
Here 300 is the cache timeout, request is Django RequestContext, and block is the StreamField block.
{% load wagtailcore_tags cache_block_tags %}
{% for block in page.body %}
{% cache_block 300 request block %}
{% include_block block with request=request %}
{% endcache_block %}
{% endfor %}
Or you can use it in block template (For example: StructBlock)
{% load wagtailcore_tags cache_block_tags %}
{% cache_block 300 request block %}
<section class="{{ block.block_type }}">
{{ block.value.heading }}
{{ block.value.paragraph }}
</section>
{% endcache_block %}
History
0.1.0 (2020-01-19)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file wagtail_cache_block-0.1.3.tar.gz
.
File metadata
- Download URL: wagtail_cache_block-0.1.3.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1603fa837ddb1234e54f03b5f784f6690985239eef08c5bc40a780d94fb4d807 |
|
MD5 | 7da98a5049967af0d5113e12fe33bfee |
|
BLAKE2b-256 | 2dad4b425c5d6e7afdcefb7cd9f3d6c9af6039280fd1965cb7aef2795f623802 |
File details
Details for the file wagtail_cache_block-0.1.3-py2.py3-none-any.whl
.
File metadata
- Download URL: wagtail_cache_block-0.1.3-py2.py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c41f082a620f4f57f2cb5fa5d644cc93cfc23d4f7d5d294e8d22b39400ef1c7 |
|
MD5 | f6059019763bd09052a5e684006d271d |
|
BLAKE2b-256 | 9dd93ba44ca9aeac2c31d9e60cfd745e0b3716fe5f27afbd3526776e31458592 |