-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
Add support for caching api/mat views. #271
Conversation
…iews to use cache mixin
a2604c2
to
7066aac
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks reasonable to me! Added one suggestion
nc/views.py
Outdated
@@ -89,6 +89,9 @@ class QueryKeyConstructor(DefaultObjectKeyConstructor): | |||
query_cache_key_func = QueryKeyConstructor() | |||
|
|||
|
|||
CACHE_TIMEOUT = 60 * 60 * 24 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we can settings.CACHE_COUNT_TIMEOUT
here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah didn't see that, will update.
nc/models.py
Outdated
@@ -265,7 +265,7 @@ def census_profile(self): | |||
""" # noqa | |||
|
|||
|
|||
class StopSummary(pg.ReadOnlyMaterializedView): | |||
class StopSummary(CachingMixin, pg.ReadOnlyMaterializedView): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd be okay leaving these off TBH, and just relying on the cache_page
decorators. I think we should remove django-cache-machine during our next upgrade..
What's changed:
cache_page
method decorator instead of drf extensionscache_response
since it's not been maintained in a while and is crashing the backend.