Changeset 92138 in webkit
- Timestamp:
- Aug 1, 2011, 1:40:04 PM (15 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/network/soup/ResourceHandleSoup.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r92132 r92138 1 2011-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 1 13 2011-07-28 Abhishek Arya <inferno@chromium.org> 2 14 -
trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp
r91954 r92138 839 839 { 840 840 static SoupSession* session = 0; 841 // Values taken from http:// stevesouders.com/ua/index.phpfollowing841 // Values taken from http://www.browserscope.org/ following 842 842 // the rule "Do What Every Other Modern Browser Is Doing". They seem 843 843 // to significantly improve page loading time compared to soup's 844 844 // default values. 845 static const int maxConnections = 60;845 static const int maxConnections = 35; 846 846 static const int maxConnectionsPerHost = 6; 847 847
Note:
See TracChangeset
for help on using the changeset viewer.