←back to thread

73 points pranay01 | 1 comments | | HN request time: 0.546s | source
Show context
_1tan ◴[] No.45311132[source]
Can someone explain when this would be good solution? We currently store loads of files in S3 and directly ingest them on demand in our Java app API pods. Seems interesting if we could speed up retrievals for sure.
replies(2): >>45312020 #>>45312647 #
1. thinkharderdev ◴[] No.45312020[source]
The basic tradeoff is that you are paying an extra tax on all requests that are not served by the cache, so you something like this would help if you are reading the same data repeatedly. So, for example, a database built on object storage or something like that.