Skip to content

Provides Python function decorators for caching the values of functions and methods

Notifications You must be signed in to change notification settings

plone/plone.memoize

Folders and files

NameName
Last commit message
Last commit date
Jul 30, 2024
Dec 14, 2018
Jul 30, 2024
Feb 5, 2024
Jul 2, 2024
Jul 2, 2024
Jul 2, 2024
Jul 30, 2024
Aug 5, 2024
Jun 23, 2023
Nov 13, 2015
Feb 8, 2019
Apr 22, 2023
Jul 2, 2024
Jul 2, 2024
Jul 30, 2024
Jul 2, 2024

Repository files navigation

plone.memoize

plone.memoize provides Python function decorators for caching the values of functions and methods.

The type of cache storage is freely configurable by the user, as is the cache key, which is what the function's value depends on.

plone.memoize has support for memcached and is easily extended to use other caching storages. It also has specialized decorators for use with Zope views. However, plone.memoize can be used without Zope.