3 ms·
File systems should never be transactional. That is plain incorrect. You or your tech should solve that if needed. The easiest way to see that this is incorrect
by AtNightWeCode 4y ago
File systems should never be transactional. That is plain incorrect. You or your tech should solve that if needed. The easiest way to see that this is incorrect is that you need to handle the error anyway. Meaning, adding something that can cause another error for an error is not viable. GO got this totally right.
- wtetzner 4y agoThe problem with the application solving the problem is that it can't control other applications attempting to write to the same files.
- AtNightWeCode 4y agoData stores are poor integration points.
- wtetzner 4y agoSure, but the filesystem is already an integration point. I much prefer standard file formats that I can use with any piece of software than trying to get pieces of software to talk in some other way.