-
Notifications
You must be signed in to change notification settings - Fork 87
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
perf: memoize blobs requests in the request scope #2777
Merged
pieh
merged 14 commits into
main
from
michalpiechowiak/frb-1629-intermittent-proxy-timeouts-on-runtime-v594
Mar 28, 2025
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
03f168d
test: add test case with multiple fetches for same resource and test …
pieh 2e7a951
refactor: create simplified key-value store interface to interact wit…
pieh 2f7dee1
refactor: create reusable helper to record warnings
pieh 85d4eb9
perf: memoize blobs requests in the request scope
pieh 41bca90
Merge branch 'main' into michalpiechowiak/frb-1629-intermittent-proxy…
pieh 42977ed
refactor: rename RequestSpecificInMemoryCache to RequestScopedInMemor…
pieh cff9f73
refactor: modulurize blobs storage abstractions
pieh 9db4cf0
Merge remote-tracking branch 'origin/main' into michalpiechowiak/frb-…
pieh d2a7fac
chore: fix lint
pieh ca233ef
refactor: move non-CacheHandler related types and utils from cache-ty…
pieh 578fbc5
fix: add missing implementation for isTagManifest and isHtmlBlob type…
pieh 13a65c3
Merge branch 'main' into michalpiechowiak/frb-1629-intermittent-proxy…
pieh 7daeeca
chore: drop use of noOpInMemoryCache
mrstork a1d2780
Merge branch 'main' into michalpiechowiak/frb-1629-intermittent-proxy…
pieh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
Should we use
storage/index.cjs
?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 personally prefer not to because my personal experience is that using
index
modules makes navigation around code base harder when you start to get multiple modules with same name in different directories, as well as just seeing multipleindex
modules opened in IDE tabs hellish so I do try to avoid itsimilar example (just instead of

index
module, is Next's app router pattern to havepage.j/ts(x)
):I can appreciate that
storage/storage.cjs
looks pretty weird, but I think it's better than added mental load of tracking multipleindex
modules. Additionally with IDEs auto-adding imports (like https://code.visualstudio.com/docs/languages/javascript#_auto-imports ) it's a bit "out of mind" as nowadays you usually don't even write your import statements manuallySome compromise could be to have index that just re-exports and doesn't actually have any logic inside, but then it just pollute directory tree IMO