Skip to content
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

Merged
merged 2 commits into from
Feb 21, 2024

Conversation

Afani97
Copy link
Contributor

@Afani97 Afani97 commented Feb 21, 2024

What's changed:

  • Use drf's cache_page method decorator instead of drf extensions cache_response since it's not been maintained in a while and is crashing the backend.
  • Update the summary views to inherit the caching mixin
  • Update the import to prime the cache when data is being imported nightly

@Afani97 Afani97 requested a review from copelco February 21, 2024 17:57
@Afani97 Afani97 force-pushed the update-api-views-to-cache-responses branch from a2604c2 to 7066aac Compare February 21, 2024 18:08
Copy link
Member

@copelco copelco left a 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
Copy link
Member

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?

Copy link
Contributor Author

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):
Copy link
Member

@copelco copelco Feb 21, 2024

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..

@Afani97 Afani97 merged commit 63960df into develop Feb 21, 2024
1 check passed
@Afani97 Afani97 deleted the update-api-views-to-cache-responses branch February 21, 2024 22:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants