We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
I'm using this package in django,like this:
class A(models.Model): @cache_memoize(300) def b(self, arg1='', arg2=None) return ...
And clear cache like this:
self.b(_refresh=True) self.b.invalidate(self)
Both this two method can't clear the method b's cache.