将图像加载动态卸载到 CDN
我们正在运行一个图块服务,它会动态生成图像,但会将一些图像缓存到 CDN。当我们收到对给定图块的请求时,例如 http://mydomain.com/x/y /z/tile.png,我们可以选择是提供本地图像还是在 CDN 上提供图像(如果我们知道给定图块有缓存)?如果是这样,它是否会通过我们的服务器提供服务,从而实际上不会减少带宽?
请注意,客户端将请求图像文件并需要接收返回的图像。我们无法向客户端发送 CDN 的 url,然后让客户端发出第二个请求。
We are running a tile serve which generates images on the fly but caches some to a CDN. When we get a request for a given tile e.g. http://mydomain.com/x/y/z/tile.png, can we choose whether to serve up the local image or to serve up the image on the CDN (if we know there is one cached for the given tile)? And if so, will it be served via our server and thus not actually reduce bandwith?
Note, the client will make a request for an image file and needs to receive an image back. We cannot send the client a url for the CDN and then have the client make a second request.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您无法触发
30x
标头重定向,则无法执行此操作。您必须从服务器端的 CDN 获取图像并将其传递出去,从而使 CDN 的意义变得毫无意义。
If you can't trigger a
30x
header redirectthere is no way to do this. You would have to fetch the image from the CDN on server side and pass it through, rendering the point of the CDN moot.