Plomino 1.13 (Dec 01, 2011)

Cache support

For additional information about this project, please visit the overview page .

Available downloads

Pypi egg

For all platforms (220 kB)

Release Notes

Tested with Plone 4.1, Plone 4, Plone 3
State Final release
License GPL
Release Manager Eric BREHAULT

This version provides a cache API usable into Plomino formula.

result = db.getCache('my_cache_key')
if not result:
    result = make_something_which_cost_CPU(stuff)
db.setCache('my_cache_key', result)