summaryrefslogtreecommitdiff
path: root/UPGRADING
diff options
context:
space:
mode:
authorJakub Zelenka <bukka@php.net>2020-08-01 14:39:33 +0100
committerJakub Zelenka <bukka@php.net>2020-08-03 19:14:13 +0100
commit44c7128fb726696a7c23ff694d1077cf0cf435d4 (patch)
tree867d08259db2864c1635c57d395ac46675015846 /UPGRADING
parent4c89ed61fba666290646af4745435d503352c9d2 (diff)
downloadphp-git-44c7128fb726696a7c23ff694d1077cf0cf435d4.tar.gz
FPM: Add pm.status_listen option
This option allows getting status from different endpoint (e.g. port or UDS file) which is useful for getting status when all children are busy with serving long running requests. Internally a new shared pool with ondemand process manager is used. It means that the status requests have reserved resources and should not be blocked by other requests.
Diffstat (limited to 'UPGRADING')
-rw-r--r--UPGRADING5
1 files changed, 5 insertions, 0 deletions
diff --git a/UPGRADING b/UPGRADING
index dd91049f98..36022bbd48 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -712,6 +712,11 @@ PHP 8.0 UPGRADE NOTES
. enchant_dict_is_added()
. LIBENCHANT_VERSION macro
+- FPM:
+ . Added a new option pm.status_listen that allows getting status from
+ different endpoint (e.g. port or UDS file) which is useful for getting
+ status when all children are busy with serving long running requests.
+
- Hash:
. HashContext objects can now be serialized.