wagtail-cache


Namewagtail-cache JSON
Version 2.4.0 PyPI version JSON
download
home_pagehttps://github.com/coderedcorp/wagtail-cache
SummaryA simple page cache for Wagtail based on the Django cache middleware.
upload_time2024-02-14 22:54:21
maintainer
docs_urlNone
authorCodeRed LLC
requires_python
licenseBSD license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Wagtail Cache
=============

A fast and simple page cache for Wagtail, inspired by the Django cache
middleware.

[Documentation](https://docs.coderedcorp.com/wagtail-cache/) |
[Source code on GitHub](https://github.com/coderedcorp/wagtail-cache) |
[PyPI](https://pypi.org/project/wagtail-cache/)


Status
------

|                        |                      |
|------------------------|----------------------|
| Python Package         | [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/wagtail-cache)](https://pypi.org/project/wagtail-cache/) [![PyPI - Wheel](https://img.shields.io/pypi/wheel/wagtail-cache)](https://pypi.org/project/wagtail-cache/) [![PyPI - Downloads](https://img.shields.io/pypi/dm/wagtail-cache)](https://pypi.org/project/wagtail-cache/) [![PyPI](https://img.shields.io/pypi/v/wagtail-cache)](https://pypi.org/project/wagtail-cache/) |
| Build                  | [![Build Status](https://dev.azure.com/coderedcorp/cr-github/_apis/build/status/wagtail-cache?branchName=main)](https://dev.azure.com/coderedcorp/cr-github/_build/latest?definitionId=9&branchName=main) [![Azure DevOps tests (branch)](https://img.shields.io/azure-devops/tests/coderedcorp/cr-github/9/main)](https://dev.azure.com/coderedcorp/cr-github/_build/latest?definitionId=9&branchName=main) [![Azure DevOps coverage (branch)](https://img.shields.io/azure-devops/coverage/coderedcorp/cr-github/9/main)](https://dev.azure.com/coderedcorp/cr-github/_build/latest?definitionId=9&branchName=main) |


Quick Start
-----------

Follow the [Installation Guide](https://docs.coderedcorp.com/wagtail-cache/stable/getting_started/install.html)


Why Wagtail Cache?
------------------

Django has a robust cache middleware that already has the functionality
needed to cache web pages effectively. But turning the cache middleware
on will blindly cache every request and does not work well with a Wagtail site.

Wagtail Cache provides a middleware, decorator, and mixin that works well with
Wagtail pages, Django views, or even manually on any request/response to
efficiently cache and serve from cache.

The end result is ultra-fast page serving that requires zero database hits
to serve cached pages. Other solutions such as template caching still require
database hits for Wagtail to serve a page.

Wagtail Cache also does not require any additional infrastructure such as Redis,
Memcached, proxies, etc. It can work directly off the filesystem, or using any
of Django's built-in cache backends.


Contributing
------------

Follow the [contributing guide](https://docs.coderedcorp.com/wagtail-cache/stable/contributing.html)


Attribution
-----------

Icon file "wagtailcache-bolt.svg":

* Was sourced from the Fork Awesome project at
   https://github.com/ForkAwesome/Fork-Awesome.

* Is licensed under the Creative Commons Attribution 3.0 Unported license,
   a copy of which is available at https://creativecommons.org/licenses/by/3.0/

* Has been modified from the original sources.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/coderedcorp/wagtail-cache",
    "name": "wagtail-cache",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "CodeRed LLC",
    "author_email": "info@coderedcorp.com",
    "download_url": "",
    "platform": null,
    "description": "Wagtail Cache\r\n=============\r\n\r\nA fast and simple page cache for Wagtail, inspired by the Django cache\r\nmiddleware.\r\n\r\n[Documentation](https://docs.coderedcorp.com/wagtail-cache/) |\r\n[Source code on GitHub](https://github.com/coderedcorp/wagtail-cache) |\r\n[PyPI](https://pypi.org/project/wagtail-cache/)\r\n\r\n\r\nStatus\r\n------\r\n\r\n|                        |                      |\r\n|------------------------|----------------------|\r\n| Python Package         | [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/wagtail-cache)](https://pypi.org/project/wagtail-cache/) [![PyPI - Wheel](https://img.shields.io/pypi/wheel/wagtail-cache)](https://pypi.org/project/wagtail-cache/) [![PyPI - Downloads](https://img.shields.io/pypi/dm/wagtail-cache)](https://pypi.org/project/wagtail-cache/) [![PyPI](https://img.shields.io/pypi/v/wagtail-cache)](https://pypi.org/project/wagtail-cache/) |\r\n| Build                  | [![Build Status](https://dev.azure.com/coderedcorp/cr-github/_apis/build/status/wagtail-cache?branchName=main)](https://dev.azure.com/coderedcorp/cr-github/_build/latest?definitionId=9&branchName=main) [![Azure DevOps tests (branch)](https://img.shields.io/azure-devops/tests/coderedcorp/cr-github/9/main)](https://dev.azure.com/coderedcorp/cr-github/_build/latest?definitionId=9&branchName=main) [![Azure DevOps coverage (branch)](https://img.shields.io/azure-devops/coverage/coderedcorp/cr-github/9/main)](https://dev.azure.com/coderedcorp/cr-github/_build/latest?definitionId=9&branchName=main) |\r\n\r\n\r\nQuick Start\r\n-----------\r\n\r\nFollow the [Installation Guide](https://docs.coderedcorp.com/wagtail-cache/stable/getting_started/install.html)\r\n\r\n\r\nWhy Wagtail Cache?\r\n------------------\r\n\r\nDjango has a robust cache middleware that already has the functionality\r\nneeded to cache web pages effectively. But turning the cache middleware\r\non will blindly cache every request and does not work well with a Wagtail site.\r\n\r\nWagtail Cache provides a middleware, decorator, and mixin that works well with\r\nWagtail pages, Django views, or even manually on any request/response to\r\nefficiently cache and serve from cache.\r\n\r\nThe end result is ultra-fast page serving that requires zero database hits\r\nto serve cached pages. Other solutions such as template caching still require\r\ndatabase hits for Wagtail to serve a page.\r\n\r\nWagtail Cache also does not require any additional infrastructure such as Redis,\r\nMemcached, proxies, etc. It can work directly off the filesystem, or using any\r\nof Django's built-in cache backends.\r\n\r\n\r\nContributing\r\n------------\r\n\r\nFollow the [contributing guide](https://docs.coderedcorp.com/wagtail-cache/stable/contributing.html)\r\n\r\n\r\nAttribution\r\n-----------\r\n\r\nIcon file \"wagtailcache-bolt.svg\":\r\n\r\n* Was sourced from the Fork Awesome project at\r\n   https://github.com/ForkAwesome/Fork-Awesome.\r\n\r\n* Is licensed under the Creative Commons Attribution 3.0 Unported license,\r\n   a copy of which is available at https://creativecommons.org/licenses/by/3.0/\r\n\r\n* Has been modified from the original sources.\r\n",
    "bugtrack_url": null,
    "license": "BSD license",
    "summary": "A simple page cache for Wagtail based on the Django cache middleware.",
    "version": "2.4.0",
    "project_urls": {
        "Homepage": "https://github.com/coderedcorp/wagtail-cache"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5d987cca21d4ee17e2fa187f651159dcea91effee2acd6ed9b18f4cd43869a1",
                "md5": "8e3a16289a758940a6e9c973485cda71",
                "sha256": "b5f5012e65a7622120cb4a9b55b7a5fd5c7e1d7bffefb82824e2df6284714c23"
            },
            "downloads": -1,
            "filename": "wagtail_cache-2.4.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8e3a16289a758940a6e9c973485cda71",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 13694,
            "upload_time": "2024-02-14T22:54:21",
            "upload_time_iso_8601": "2024-02-14T22:54:21.971419Z",
            "url": "https://files.pythonhosted.org/packages/e5/d9/87cca21d4ee17e2fa187f651159dcea91effee2acd6ed9b18f4cd43869a1/wagtail_cache-2.4.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-14 22:54:21",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "coderedcorp",
    "github_project": "wagtail-cache",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "wagtail-cache"
}
        
Elapsed time: 0.18516s