5 ms·
How would a "reliable message queue + a script engine" be equivalent to a dynamically hot swappable code reloading? Could you elaborate?
by blankverse 13y ago
How would a "reliable message queue + a script engine" be equivalent to a dynamically hot swappable code reloading?
Could you elaborate?
- cdcarter 13y agoThe message queue delivers messages to the script engine, running the script new every time. No code is running hot to be swapped into. At the next message, the new code is loaded. Similar to what Erlang does, but much more brittle, less tested, and more fail-prone.