Following on from my post about etags, earlier this week, there's something related to caching that I've seen many apps do wrong.
It basically comes down to this: just because the timespan that a server says content can be cached for has expired doesn't mean that the content will be changed.
Let me demonstrate by way of an example.
Imagine this scenario:
- App want to display an image from the web.
- App requests the resource
- Server returns resource and also an expiry header saying it's good for 24 hours
- App displays the image and recognises the header so saves a copy of the image for later reuse. (That it recognises the header and caches a copy of the image is already better than many but let's keep going.)
- App is closed after two minutes of use
- App is reopened six hours later
- App shows image from cache as it hasn't expired.
- App is next opened two days later
- App ignores the cached image, as it's expired, and so goes to the server to get it again.
Notice that last point.
What if the image hasn't changed?
Was the best thing the app could have done to:
- briefly show a space/placeholder while the image is downloaded again?
- waste data downloading the same thing again?
Wouldn't it be better to:
- keep showing the original image
- check if the image is still valid. (using, for example, etags or if-modified-since headers)
- if it is still valid, then update the expiry time/TTL stored locally
- if it is no longer valid then update the locally cached and displayed image.
Yes, it's a little bit more work but it's a better experience.
- less, duplicate, content need be downloaded
- consistently display images that haven't changed
It may not by the right approach for every image and is dependent upon server support but definitely worth considering.
Don't throw away cached data just because it might have expired
Related Posts:
WinAppDriver a base for testingI've been doing some automated UI testing using WinAppDriver. Here's a simple base class I've been using for my tests that takes care of ensuring tha… Read More
Optimizing the comparison of a variable with multiple options in C# Yesterday, I wrote about my thoughts around optimising the comparison of a variable with multiple options and how I prefer to optimize for reada… Read More
Cherry picking work is slow and unproductiveThe IT Director would work with the sales team and choose a set of new features, functionality, and prioritized bug fixes to include in the next relea… Read More
Comparing a variable with multiple options in C#In a code review recently there was some debate about how to compare a variable with multiple values. I'm writing this to put all my thoughts on the&n… Read More
UWP vs Web developmentI recently heard someone try and make this argument. (They were sucking up to Microsoft at the time.) If I do web dev I have to learn at least 4 thin… Read More
ok
ReplyDelete