You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems it's not being used. We should investigate creating it lazily probably in a temp directory. I don't think we should use an sqlite database for this, but instead a more efficient append-only custom database.
Considerations:
Different processes running the same binary could be updating the code cache at the same time.
The cache could be updated at any time via a dynamic import.
We want to minimize memory usage.
Data corruption.
The text was updated successfully, but these errors were encountered:
Actually, what we could do here instead is just serialize the code cache of the modules during initial loading to a single file and keep dynamic imports dynamic. That would greatly simplify things and we could limit it to modules found in the binary so that we don't need to do any hashing.
It seems it's not being used. We should investigate creating it lazily probably in a temp directory. I don't think we should use an sqlite database for this, but instead a more efficient append-only custom database.
Considerations:
The text was updated successfully, but these errors were encountered: