跨主机名并行下载
我们正在尝试提高应用程序性能,我们使用struts2、jsp和web服务,并使用ajax从服务中检索数据并在jsp页面中显示响应。
这大约需要 15 秒,我的客户要求减少这次时间。所以我们正在实现跨主机名的并行下载
我们如何从不同的子主机名加载图像和js文件?
请建议
We are trying to improve the application performance we are using the struts2,jsp and webservices and retriving the data from service and display response in jsp page using ajax.
This is taking approximately 15 secs my client is asking reduce this time. So we are implementing the Parallelize downloads across hostnames
How can we load the images and js files from different sub host names?
Please suggest
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用指向不同服务器的子域。
例如,您可以配置 DNS,以便
images.example.org
指向 Amazon S3,而js.example.org
指向廷巴克图的专用服务器,而所有其他资源是从您的“主”服务器(无论是什么)下载的。You use subdomains pointing to different servers.
You can, for example, configure your DNS so that,
images.example.org
points to Amazon S3 whilejs.example.org
points to a dedicated server in Timbuktu while all the other resources are downloaded from your "main" server(s) (whatever that is).