New ask Hacker News story: Ask HN: Is cloud infra making us forget the local file system and memory?
Ask HN: Is cloud infra making us forget the local file system and memory? 5 by hliyan | 0 comments on Hacker News. I started programming in the 90's and continue to do so to this day (though in a limited capacity since I'm managing teams). I frequently see things that would have had very simple/dumb solutions 20 years ago[1], which now seem to require complicated tools, libraries or services. Two examples: I recently saw an engineer provision an S3 bucket to store a temporary file that is only needed for the current session, and only accessible to the application that created it. For me, this is what the local file system is for. I saw another engineer provision an in-memory key-value store to store some infrequently changing reference data that can be easily loaded at startup, in an application runtime where memory persists between requests. For me, this is what local heap memory is for. I would simply load the data into a singleton map. Both of these services have legitima...