服务器端的图像缓存

时间:2012-04-27 19:51:59

标签: image caching server-side

对于在java / spring中创建的产品目录Web应用程序,它从第三方Web服务获取产品图像,在服务器端进行图像缓存的策略是什么?

感谢。

1 个答案:

答案 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天的图像。