Title: [92138] trunk/Source/WebCore
- Revision
- 92138
- Author
- [email protected]
- Date
- 2011-08-01 13:40:04 -0700 (Mon, 01 Aug 2011)
Log 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 <[email protected]> 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):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (92137 => 92138)
--- trunk/Source/WebCore/ChangeLog 2011-08-01 20:39:31 UTC (rev 92137)
+++ trunk/Source/WebCore/ChangeLog 2011-08-01 20:40:04 UTC (rev 92138)
@@ -1,3 +1,15 @@
+2011-08-01 Marco Peereboom <[email protected]>
+
+ [Soup] Set default max-conns to a more sane default value and fix comment
+ https://bugs.webkit.org/show_bug.cgi?id=65335
+
+ 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):
+
2011-07-28 Abhishek Arya <[email protected]>
Regression(82144): Crash in TrailingObjects::updateMidpointsForTrailingBoxes
Modified: trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp (92137 => 92138)
--- trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp 2011-08-01 20:39:31 UTC (rev 92137)
+++ trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp 2011-08-01 20:40:04 UTC (rev 92138)
@@ -838,11 +838,11 @@
SoupSession* ResourceHandle::defaultSession()
{
static SoupSession* session = 0;
- // Values taken from http://stevesouders.com/ua/index.php following
+ // Values taken from http://www.browserscope.org/ following
// the rule "Do What Every Other Modern Browser Is Doing". They seem
// to significantly improve page loading time compared to soup's
// default values.
- static const int maxConnections = 60;
+ static const int maxConnections = 35;
static const int maxConnectionsPerHost = 6;
if (!session) {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes