-
Notifications
You must be signed in to change notification settings - Fork 77
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
Marshal all data into single file #357
Labels
Comments
Another reason to do this is #731 (comment). |
jerhard
added a commit
that referenced
this issue
May 31, 2022
Incremental data is kept in-memory, maintained by Serialize.Cache. Retrieving the data from there can be done using a GADT.
jerhard
added a commit
that referenced
this issue
May 31, 2022
Incremental data is kept in-memory, maintained by Serialize.Cache. Retrieving the data from there can be done using a GADT.
jerhard
added a commit
that referenced
this issue
May 31, 2022
Incremental data is kept in-memory, maintained by Serialize.Cache. Retrieving the data from there can be done using a GADT.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In #354 it became apparent that separately marshaling loses some connections or duplicates some data between the files. See
#354 (comment), #354 (comment) and #354 (comment).
Hence it would make more sense to marshal everything (solution, solver hashtables, analysis auxiliary data, etc) connected and unduplicated in a single record.
We can still have options then controlling what is and isn't marshaled and just have them optional in the record. But if they're all present, they should all relate properly.
Probably to be done after #356 and #350, which both change what and where is marshaled.
The text was updated successfully, but these errors were encountered: