| ▲ | CobrastanJorji 8 hours ago | |||||||
This is an interesting write up, but I'm curious about the use case. If you don't need to scale, and you don't need to replicate anything, why do you want S3 specifically? Are you using a tool that wants to write to something S3-like? Do you just like reading and writing objects via HTTP POST and GET? Are you moving an app to or from the cloud? | ||||||||
| ▲ | tptacek 7 hours ago | parent | next [-] | |||||||
It's probably the most important storage API in the industry. Implementing it gives you on-prem storage, AWS S3 (the Hoover Dam of Internet storage megaprojects, arguably the most reliable store of any kind available to any normal programmer), and a whole ecosystem of S3-compatible options with different features and price points. It's a little like asking why you'd use SQL. | ||||||||
| ||||||||
| ▲ | colechristensen 7 hours ago | parent | prev [-] | |||||||
I want my application servers to be stateless and I've got state to keep that looks a lot more like files than database rows. And I want things like backup, replication, scaling, etc. to be generic. I wrote a git library implementation that uses S3 to store repositories for example. | ||||||||