Changeset 194697 in webkit


Ignore:
Timestamp:
Jan 7, 2016 7:00:18 AM (8 years ago)
Author:
Michael Catanzaro
Message:

[SOUP] Consider reducing max simultaneous connections
https://bugs.webkit.org/show_bug.cgi?id=137282

Reviewed by Carlos Garcia Campos.

Reduce max simultaneous connections from 35 to 17, because (a) all major browsers except
Chrome use 17, and (b) Chrome uses 10. The only reason we previously used 35 was that other
browsers were using 35 at the time.

  • platform/network/soup/SoupNetworkSession.cpp:

(WebCore::SoupNetworkSession::SoupNetworkSession):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r194691 r194697  
     12016-01-07  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        [SOUP] Consider reducing max simultaneous connections
     4        https://bugs.webkit.org/show_bug.cgi?id=137282
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        Reduce max simultaneous connections from 35 to 17, because (a) all major browsers except
     9        Chrome use 17, and (b) Chrome uses 10. The only reason we previously used 35 was that other
     10        browsers were using 35 at the time.
     11
     12        * platform/network/soup/SoupNetworkSession.cpp:
     13        (WebCore::SoupNetworkSession::SoupNetworkSession):
     14
    1152016-01-06  Antti Koivisto  <antti@apple.com>
    216
  • trunk/Source/WebCore/platform/network/soup/SoupNetworkSession.cpp

    r187586 r194697  
    9898    // to significantly improve page loading time compared to soup's
    9999    // default values.
    100     static const int maxConnections = 35;
     100    static const int maxConnections = 17;
    101101    static const int maxConnectionsPerHost = 6;
    102102
Note: See TracChangeset for help on using the changeset viewer.