Hacker News new | ask | show | jobs
by Scarblac 3 hours ago
What is done in practice, for daily development use? Building the image in memory from source files at startup?
1 comments

Typically, for development, one will start a clean image in the morning and load it up with a combination of newly compiled code and automatically cached previously compiled code. This is mostly invisible to the user unless something goes wrong with the cache and it has to be cleared. The unaware user could think they're recompiling everything every time.