SPDY 协议是否消除了对 CSS 精灵、组合 JS 和 CSS 文件的需求?

发布于 2024-10-17 20:18:39 字数 118 浏览 1 评论 0原文

我一直将 CSS 和 JS 文件结合起来。这同样也适用于图像。我想知道 Google 的 SPDY 及其多路连接是否消除了所有这些需求?我在这里问的不是编译/缩小,而是关于典型 HTTP 协议中额外 HTTP 请求的开销。

I have been always combining CSS and JS files. The same has pretty much applied to images, too. I am wondering here that does Google's SPDY, with its multiplexing connections, remove the need for all of this? Compilation/minifying is not what I am asking here, just about the overhead of additional HTTP requests we have in the typical HTTP protocol.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不必你懂 2024-10-24 20:18:39

SPDY 允许您的浏览器并行获取所有图像,这很有帮助。如果浏览器有足够的带宽,这足以使 SPDY unsprite 与带有 sprite 的 HTTP 一样快。

但是,精灵的绝对性能仍然更好。

通常,当您组合 5-6 个图像时,所得到的图像大小明显小于各个图像大小的总和。您的结果会有所不同,具体取决于您使用的图像类型以及图像数量。 CSS技巧的人有一个例子: http://css-tricks.com/css-sprites/

SPDY allows your browser to fetch all the images in parallel, which helps. If the browser has sufficient bandwidth, this can be enough to make SPDY unsprited as fast a HTTP with sprites.

But, sprites are still better for absolute performance.

Usually, when you combine 5-6 images the resulting size of the image is significantly smaller than the sum of the sizes of the individual images. Your results will vary, depending on what types of images you're using and how many there are. The css tricks guys have an example: http://css-tricks.com/css-sprites/

吃不饱 2024-10-24 20:18:39

即使采用 SPDY 多路复用,减少请求也可能会导致性能提升。

Even with the multiplexing of SPDY, cutting down on requests will likely result in performance boosts.

请止步禁区 2024-10-24 20:18:39

不要将 CSS 精灵与外部样式表一起使用 - 资源
外部样式表显然只有在外部样式表之后才被发现
样式表已下载,并且仅当规则与
元素。它们减少 HTTP 请求的优点是
由于其多路复用,SPDY 不需要。因此,CSS 精灵
只是让它慢一点。

https://www.chromium.org/spdy/spdy-best-practices

Don't use CSS sprites with external stylesheets - Resources in
external stylesheets are obviously only discovered after the external
stylesheet has been downloaded, and only once the rule matches an
element. The advantage they provide of reducing HTTP requests is
unnecessary with SPDY due to its multiplexing. Therefore, CSS sprites
just make it slower.

https://www.chromium.org/spdy/spdy-best-practices

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文