对于在java / spring中创建的产品目录Web应用程序,它从第三方Web服务获取产品图像,在服务器端进行图像缓存的策略是什么?
感谢。
答案 0 :(得分:0)
让您的网站创建指向本地托管页面的IMG引用。此页面将执行以下操作:
if (the requested image does not exist in the local cache) {
go to the third party site and save it to the local cache
}
serve the image from the local cache
根据图像在第三方网站上的更改频率,您可能需要添加一个cron作业,该作业会定期删除超过X天的图像。