Fix category prefetch in Story.get_main_stories - #258
Open
norkans7 wants to merge 3 commits into
Open
Conversation
The prefetch queryset excluded categories whose direct image field was
blank, leaving story.category as None even though category images live
on the CategoryImage relation. It also used .only("id") which triggered
a deferred-field query per story when category fields were accessed.
Prefetch categories unfiltered with their active images, and make
Category.get_first_image use the prefetched images when available so
rendering featured stories does no per-story queries.
- Select related org on the prefetched category queryset - Simplify Category.get_first_image and document the prefetched_images contract - Test that inactive category images are ignored and the lowest-id active image is used
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The category prefetch in
Story.get_main_storiesfiltered on the category's directimagefield — which is normally blank, since category images live in the related CategoryImage model — sostory.categoryprefetched to None for most stories and category images never rendered. The.only("id")restriction also triggered a deferred-field query per story.The prefetch no longer filters categories (inactive handling already lives in
get_category_image) and instead prefetches active category images into a cache thatget_first_imagenow uses. A test covers the blank-image-field case and locks in the query count withassertNumQueries.