A previous question looked like it was asking a similar question but it wasn't answered.
Can I just change the images on the server, keeping the same URL, and rely on HTTP 304 and other mechanisms to reload the new version of the image even if they exist in the cache?
My first thought was that any change to an image would have to also change the name of the image to force a refresh.
Possible workaround - suppose I have a bunch of images that share a common URL root, such as https://server/path/A/image.png
and https://server/path/B/anotherimage.png
. Can I remove all images from one path without invalidating the other - for instance, when something referring to a chunk of information represented by the contents of https://server/path/A
is changed I could reload every image associated with it but not those in other folders?
My use of Kingfisher is basic so far using the extension on UIImageView:
myImage.kf.setImage(with: imageURL)