<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    Http協議的幾個概念和web browser優化

    作者:tacy lee

    寫本文的目的就是想搞清除http1.1和1.0的具體區別,看過很多別人寫的關于他們的概念,可能是沒動手去測試,總是模模糊糊

    Persistent HTTP connections

    我們知道,早先的WEB網站都是由一些文字頁面組成,一個頁面可能就是一個簡單的http請求,里面也不會嵌套css,gif類似的資源文件,所以在1.0標準實現的時候沒有去考慮連接的效率(用完就丟棄,【1】),現在的頁面很多都非常復雜,在里面嵌套二三十個資源文件是很正常的事情,創建二三十個tcp連接去下載這些資源,對于tcp連接的利用率非常低。

    另外一方面,tcp連接打開之后,首先采用slow start算法【2】,開始先傳輸幾個小的packet探測網絡情況來確定傳輸速率,而且頁面上嵌入的資源文件往往都比較小,也就是說如果采用http 1.0,就意味著很多的資源傳輸都是在slow start下完成的,效率也很低。

    Persistent HTTP connections就是讓連接重復利用,不需要為每個資源文件都建立一個tcp連接。也不存在slow start問題。

    http規范里面對于持久連接的數量建議為2(firefox和iexplorer缺省都是采用該值),增加該值會增加服務器的壓力(需要創建更多的連接),而且對于網絡狀況不好的情況只會導致更大的阻塞,所以不建議修改該值【3】
      Clients that use persistent connections SHOULD limit the number of simultaneous connections that they maintain to a given server. A single-user client SHOULD NOT maintain more than 2 connections with any server or proxy. A proxy SHOULD use up to 2*N connections to another server or proxy, where N is the number of simultaneously active users. These guidelines are intended to improve HTTP response times and avoid congestion

      * firefox 的Persistent HTTP connections設置
      network.http.max-persistent-connections-per-server
      * iexplorer的Persistent HTTP connections設置
      http://support.microsoft.com/?kbid=282402

    Pipelining

    在HTTP 1.0的時候,客戶端的請求都是等到前一個請求完成之后,再發送另一個請求,一個packet里面只能請求一個資源。Pipelining可以讓你在一個packet里面請求多個資源,減少了packet的數量,具體請參考下面示例。

      * firefox Pipelining設置
      network.http.pipelining             (缺省為false,推薦打開)
      network.http.pipelining.maxrequests  (缺省為4,最大為8,建議設置為8)
      * iexplorer設置
      ie沒有實現pipelining


      * 沒有實現Pipelining的瀏覽器發送的packet
    No.     Time        Source                Destination           Protocol Info
         
    52 0.576526    192.168.1.61          203.81.29.137         HTTP     GET /images/index_03.gif HTTP/1.1

    Frame 
    52 (620 bytes on wire, 620 bytes captured)
    Ethernet II, Src: QuantaCo_c3:
    16:11 (00:16:36:c3:16:11), Dst: Intel_5f:99:3a (00:0e:0c:5f:99:3a)
    Internet Protocol, Src: 
    192.168.1.61 (192.168.1.61), Dst: 203.81.XXX.XXX (203.81.XXX.XXX)
    Transmission Control Protocol, Src Port: 
    2320 (2320), Dst Port: http (80), Seq: 1122, Ack: 8456, Len: 566
    Hypertext Transfer Protocol
        GET 
    /images/index_03.gif HTTP/1.1\r\n
        Host: www.primeton.com\r\n
        User
    -Agent: Mozilla/5.0 (Windows;U;Windows NT 5.1; en-US; rv:1.8.1.6)Gecko/20070725 Firefox/2.0.0.6\r\n
        Accept: image
    /png,*/*;q=0.5\r\n
        Accept-Language: en-us,en;q=0.5\r\n
        Accept-Encoding: gzip,deflate\r\n
        Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n
        Keep-Alive: 300\r\n
        Connection: keep-alive\r\n
        Referer: 
    http://www.primeton.com/\r\n
        Cookie: __utmz=33497343.1189057682.16.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none); __utma=3349734
    3.241348620.1172460177.1189057682.1189130143.17; __utmb=33497343; __utmc=33497343\r\n
        \r\n


      * 實現了Pipelining的瀏覽器發送的packet,可以看到,這個包里面請求了兩個資源(index_03.gif和SH.jpg)
    No.     Time        Source                Destination           Protocol Info
         
    39 0.558943    192.168.1.61          203.81.29.137         HTTP     GET /images/index_03.gif HTTP/1.1

    Frame 
    39 (1514 bytes on wire, 1514 bytes captured)
    Ethernet II, Src: QuantaCo_c3:
    16:11 (00:16:36:c3:16:11), Dst: Intel_5f:99:3a (00:0e:0c:5f:99:3a)
    Internet Protocol, Src: 
    192.168.1.61 (192.168.1.61), Dst: 203.81.XXX.XXX (203.81.XXX.XXX)
    Transmission Control Protocol, Src Port: 
    2309 (2309), Dst Port: http (80), Seq: 1158, Ack: 24226, Len: 1460
    Hypertext Transfer Protocol
        GET 
    /images/index_03.gif HTTP/1.1\r\n
        Host: www.primeton.com\r\n
        User
    -Agent: Mozilla/5.0 (Windows;U;Windows NT 5.1; en-US; rv:1.8.1.6)Gecko/20070725 Firefox/2.0.0.6\r\n
        Accept: image
    /png,*/*;q=0.5\r\n
        Accept-Language: en-us,en;q=0.5\r\n
        Accept-Encoding: gzip,deflate\r\n
        Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n
        Keep-Alive: 300\r\n
        Connection: keep-alive\r\n
        Referer: 
    http://www.primeton.com/\r\n
        Cookie: __utmz=33497343.1189057682.16.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none); __utma=3349734
    3.241348620.1172460177.1189057682.1189130143.17; __utmb=33497343; __utmc=33497343\r\n
        \r\n
    Hypertext Transfer Protocol
        GET /images/SH.jpg HTTP/1.1\r\n
        Host: www.primeton.com\r\n
        User-Agent: Mozilla/5.0 (Windows;U;Windows NT 5.1; en-US; rv:1.8.1.6)Gecko/20070725 Firefox/2.0.0.6\r\n
        Accept: image/png,
    */*;q=0.5\r\n
        Accept
    -Language: en-us,en;q=0.5\r\n
        Accept
    -Encoding: gzip,deflate\r\n
        Accept
    -Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n
        Keep
    -Alive: 300\r\n
        Connection: keep
    -alive\r\n
        Referer: http:
    //www.primeton.com/\r\n
        Cookie: __utmz=33497343.1189057682.16.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none); __utma=334973
    43.241348620
    .1172460177.1189057682.1189130143.17; __utmb=33497343; __utmc=33497343\r\n
        \r\n

    chunked

    http/1.0不支持chunked packet(當sender無法確定傳輸數據大小的時候使用),keep-alive對于http/1.0同樣有效,但是不支持chuncked packet

    ====== 參考資料: ======

      * 【1】:Nielsen, H.F., Gettys, J., Baird-Smith, A., Prud'hommeaux, E., Lie, H., and C. Lilley. [[http://www.w3.org/Protocols/HTTP/Performance/Pipeline.html|Network Performance Effects of HTTP/1.1, CSS1, and PNG]], Proceedings of ACM SIGCOMM '97, Cannes France, September 1997.[jg642]
      * 【2】:Spero, S., [[http://www.w3.org/Protocols/HTTP/1.0/HTTPPerformance.html|Analysis of HTTP Performance Problems]], July 1994.
      * 【3】:[[http://www.w3.org/Protocols/rfc2616|Hypertext Transfer Protocol -- HTTP/1.1]]

    posted on 2007-09-07 17:28 tacy lee 閱讀(3183) 評論(0)  編輯  收藏 所屬分類: 性能相關

    主站蜘蛛池模板: 99在线观看精品免费99| 亚洲免费一区二区| 久久免费看黄a级毛片| 亚洲成人免费在线| 中文字幕免费视频| 亚洲成无码人在线观看| 五月婷婷综合免费| 日韩亚洲国产综合高清| 成年女人18级毛片毛片免费 | 亚洲国产精品乱码在线观看97| 午夜无码A级毛片免费视频| 久久水蜜桃亚洲av无码精品麻豆| 久久一本岛在免费线观看2020| 亚洲黄色网址在线观看| 免费无码肉片在线观看| 亚洲中文字幕无码中文| 又大又粗又爽a级毛片免费看| 成人午夜免费视频| 亚洲自偷自偷图片| 67194国产精品免费观看| 国产成人精品亚洲日本在线 | 91亚洲国产成人久久精品网址| 无码国产精品一区二区免费式影视| 国产免费久久久久久无码| 国产亚洲色婷婷久久99精品91| 最近免费字幕中文大全| 国产V亚洲V天堂无码| 两个人看的www高清免费观看| 亚洲人成网站免费播放| 国产亚洲综合色就色| 中文字幕一区二区免费| 亚洲不卡视频在线观看| 亚洲AV中文无码乱人伦| 99久9在线|免费| 国产亚洲精品美女久久久久| 亚洲av永久无码精品表情包| 妞干网免费观看视频| 成人久久免费网站| 亚洲av日韩aⅴ无码色老头| 精品国产综合成人亚洲区| 在线观看视频免费国语|