this post was submitted on 19 Oct 2024
74 points (98.7% liked)
Connect for Lemmy App
2675 readers
1 users here now
A community for the mobile app Connect for Lemmy.
Links
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
It's standard practice to cache images when displaying, as an image viewed once is likely to be viewed again, and then it's good to save on the data and latency by loading it from disk (or even memory).
However, it's also standard practice to have an upper size boundary on this cache and to implement an eviction mechanism for the cache once it has reached its capacity.
This is probably a case of misconfiguration or something overlooked during implementation.