Hi there, Making the following minor change:
def clear(self, key = None):
if key:
key = '%s/%s' % (self.request.application, key)
self.delete(key)
else:
self.flush_all()
would allow the entire cache to be cleared via.
cache.ram.clear()
Matt
--

