We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It took me a bit of head-scratching to figure out why
@cache.memoize(timeout=30) @staticmethod def from_nomination(nomination):
doesn't work, i.e. you need to do:
@staticmethod @cache.memoize(timeout=30) def from_nomination(nomination):
following the same logic as described under Caching View Functions. You might want to mention this in the docs.
PS, while we're there, in the warning box, "If you reverse both decorator" should be "If you reverse both decorators" (plural).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It took me a bit of head-scratching to figure out why
doesn't work, i.e. you need to do:
following the same logic as described under Caching View Functions. You might want to mention this in the docs.
PS, while we're there, in the warning box, "If you reverse both decorator" should be "If you reverse both decorators" (plural).
The text was updated successfully, but these errors were encountered: