|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2014-05-25 14:10 UTC] rasmus@php.net
-Status: Open
+Status: Not a bug
[2014-05-25 14:10 UTC] rasmus@php.net
[2014-05-26 14:49 UTC] mike@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 03:00:01 2025 UTC |
Description: ------------ Hi Guys, i think that's a bug, when using PHP_HTTP v2 module: $client = new http\Client('curl', 'FH'); Persistent connection handles are stored per-process, not globally, when PHP is used as PHP-fpm fcgi. Is that supposed to work like this? Expected result: ---------------- http\Client will pick one unused persistent connection from global, not per-process pool. Actual result: -------------- http\Client will pick one unused persistent connection from process local pool.