-
Notifications
You must be signed in to change notification settings - Fork 131
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
Cache more things in the DB so we don't hit the disk #1083
Comments
We should also cache the results of |
@finnhodgkin If you're interested, this may be another one worth looking into. |
The part where we cache the result of Since we are going to have lockfiles for all builds (see #917), I don't think the part where we cache package sets in the database makes sense anymore |
I'm not sure how much free time I'll have in the next week or two but happy to take a look if I find some. |
Something else to pile on this "bring things in the database": right now we write a file and check its modification time to decide if we should be fetching the registry repo. This is slow, and not portable between OSs, so we should just have a table for it. |
Now that we have a database, we should not be reading and writing caches on disk, but just add a database table to have them into
The text was updated successfully, but these errors were encountered: