Changeset 190887 in webkit


Ignore:
Timestamp:
Oct 12, 2015 2:22:01 PM (8 years ago)
Author:
peavo@outlook.com
Message:

[Curl] Increase limit of parallel network requests.
https://bugs.webkit.org/show_bug.cgi?id=150035

Reviewed by Alex Christensen.

If the limit is too low, other network requests will often be blocked until
active requests finishes. This can affect performance in a negative way.

  • platform/network/curl/ResourceHandleManager.cpp:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r190884 r190887  
     12015-10-12  Per Arne Vollan  <peavo@outlook.com>
     2
     3        [Curl] Increase limit of parallel network requests.
     4        https://bugs.webkit.org/show_bug.cgi?id=150035
     5
     6        Reviewed by Alex Christensen.
     7
     8        If the limit is too low, other network requests will often be blocked until
     9        active requests finishes. This can affect performance in a negative way.
     10
     11        * platform/network/curl/ResourceHandleManager.cpp:
     12
    1132015-10-12  Brady Eidson  <beidson@apple.com>
    214
  • trunk/Source/WebCore/platform/network/curl/ResourceHandleManager.cpp

    r188600 r190887  
    7979const int selectTimeoutMS = 5;
    8080const double pollTimeSeconds = 0.05;
    81 const int maxRunningJobs = 5;
     81const int maxRunningJobs = 128;
    8282
    8383static const bool ignoreSSLErrors = getenv("WEBKIT_IGNORE_SSL_ERRORS");
Note: See TracChangeset for help on using the changeset viewer.