它会更快。但是,从浏览器到域的同时连接数通常限制为 4-6。您可以通过为您的静态内容创建一堆子域别名来规避此限制,所有这些别名都指向同一个 IP。喜欢
s[1-5].yourdomain.com -> same IP
然后从不同的域访问您的图像,浏览器将并行加载它们。
更新:
更彻底地查看您的网站,您的网站的响应速度很慢。
请求http://applesiam.com/wp-content/themes/volt/images/social_sprite_32.png
返回 HTTP 304(未修改),但这需要 824 毫秒(用 Firebug 测试)。它应该距离地球的另一端大约 100 毫秒。
我为此图像做了一些 ApacheBench 测试。
10个并发请求:
» ab -n 10 -c 10 http://applesiam.com/wp-content/themes/volt/images/social_sprite_32.png
Percentage of the requests served within a certain time (ms)
50% 1683
66% 1685
75% 1701
80% 1710
90% 1710
95% 1710
98% 1710
99% 1710
100% 1710 (longest request)
20个并发请求:
» ab -n 20 -c 20 http://applesiam.com/wp-content/themes/volt/images/social_sprite_32.png
Percentage of the requests served within a certain time (ms)
50% 2272
66% 2899
75% 2910
80% 2974
90% 2982
95% 2985
98% 2985
99% 2985
100% 2985 (longest request)
将同时请求的数量增加一倍几乎使响应时间增加了一倍,这意味着您的服务器无法处理中等数量的请求。您应该检查您的服务器是否存在瓶颈(CPU、RAM、网络、Web 服务器配置)。