3 ms·
Kind of reminds me of how redis forks itself to have a snapshot to persist as a backup.
by wood_spirit 13d ago
Kind of reminds me of how redis forks itself to have a snapshot to persist as a backup.
- hypervs 13d agoYup, essentially capture state now so execution can continue from it later. The difference is that this checkpoint represents compiler-known program state (live values and control position) rather than an entire process or address space. That lets it omit dead state and the completed execution prefix.
- mike_hearn 12d agoBTW, for some reason a lot of your comments are dead. I'm bring them back.
- wood_spirit 11d agoAnother thing it brings to mind is Record Replay (RR) debugger that was originally made for Firefox.
- orf 13d agoI always found that to be really elegant.