客户端缓存资源多长时间?
我的一个网站将在数据库中托管常用的图像、javascript 和 CSS 样式表。 由于这些不太可能每天都发生变化,因此我将在这些上使用一些客户端缓存来减少服务器负载。
您将这些内容缓存多长时间? 几天? 更多的?
如果更新资源,我可能不会重复使用相同的名称两次,因此我不应该担心过时的数据。
A website of mine will host the usual images, javascript and CSS stylesheets in the database. Since these are unlikely to change each day, I am going to use some client caching on these to reduce the server load.
How long do you cache these? A few days? More?
I'm probably not going to reuse the same name twice if I update the resource, so I shouldn't have outdated data concerns.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在更新时更改名称,那么您就可以永久缓存。 如果您同意改名,这将是一个很大的优势。
对于脚本和 CSS 来说,这也是一个好主意,因为即使您另有规定,某些客户端计算机也会持续缓存。
If you're changing the name when you update, then you have the luxury of caching forever. This is a big plus if you're okay with name changing.
It's also a good idea when it comes to script and CSS as some client machines will persist to cache even if you had ruled otherwise.