⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 92138 in webkit


Ignore:
Timestamp:
Aug 1, 2011, 1:40:04 PM (15 years ago)
Author:
commit-queue@webkit.org
Message:

[Soup] Set default max-conns to a more sane default value and fix comment
https://bugs.webkit.org/show_bug.cgi?id=65335

Patch by Marco Peereboom <marco@peereboom.us> on 2011-08-01
Reviewed by Martin Robinson.

Rigged the xxxterm web browser and validated that the default values were set properly.

  • platform/network/soup/ResourceHandleSoup.cpp:

(WebCore::ResourceHandle::defaultSession):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r92132 r92138  
     12011-08-01  Marco Peereboom  <marco@peereboom.us>
     2
     3        [Soup] Set default max-conns to a more sane default value and fix comment
     4        https://bugs.webkit.org/show_bug.cgi?id=65335
     5
     6        Reviewed by Martin Robinson.
     7
     8        Rigged the xxxterm web browser and validated that the default values were set properly.
     9
     10        * platform/network/soup/ResourceHandleSoup.cpp:
     11        (WebCore::ResourceHandle::defaultSession):
     12
    1132011-07-28  Abhishek Arya  <inferno@chromium.org>
    214
  • trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp

    r91954 r92138  
    839839{
    840840    static SoupSession* session = 0;
    841     // Values taken from http://stevesouders.com/ua/index.php following
     841    // Values taken from http://www.browserscope.org/ following
    842842    // the rule "Do What Every Other Modern Browser Is Doing". They seem
    843843    // to significantly improve page loading time compared to soup's
    844844    // default values.
    845     static const int maxConnections = 60;
     845    static const int maxConnections = 35;
    846846    static const int maxConnectionsPerHost = 6;
    847847
Note: See TracChangeset for help on using the changeset viewer.