Tools and config for memcache related caching
Project description
EEA Cache product
This package combines the features from lovely.memcached and plone.memoize.ram. It provides a decorator and utility for Memcaches at EEA. The decorator allows you set dependencies known by lovely.memcached
Contents
Cache decorator
>>> def key(method, self): ... return method.__name__>>> from eea.cache import cache >>> @cache(key, dependencies=["frontpage"]) ... def myMethod(num): ... return num*num
Lets clear any running memcache
>>> from lovely.memcached.event import InvalidateCacheEvent >>> from zope.event import notify >>> notify(InvalidateCacheEvent(raw=True, dependencies=['frontpage']))
Our myMethod will now be cached with the key returned from the method ‘key’ and with dependency ‘frontpage’.
>>> myMethod(2) 4 >>> myMethod(3) 4>>> notify(InvalidateCacheEvent(raw=True, dependencies=['frontpage'])) >>> myMethod(3) 4
Funding
EEA - European Enviroment Agency (EU)
Changelog
4.2 - (2012-02-06)
no changes
4.0 - (2011-11-07)
Feature: Plone 4.x compatible release [ghicaale #4309]
0.3 - (2010-11-22)
Bug fix: fixed tests namespace in order to be used within hudson [voineali #3821]
0.2 - (2010-11-10)
Bug fix: added fake memcache client in order to fix broken doctests [voineali]
0.1 - (2009-11-10)
Initial release
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
File details
Details for the file eea.cache-4.2.zip
.
File metadata
- Download URL: eea.cache-4.2.zip
- Upload date:
- Size: 15.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d5168902f4ddb639da296a6eb45c45cbf5424e6a532b54a3788c15d69e26628 |
|
MD5 | 2ec8d2fc8a6668089faef7e74076f1f4 |
|
BLAKE2b-256 | b193baa4e004ae702d30f364da285ac35978cb843a51f4cfc82c12303ea5d25b |