diff options
author | Wolfy-J <[email protected]> | 2019-05-19 13:17:30 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2019-05-19 13:17:30 +0300 |
commit | 26fb29275d4e79165911bb1cdb3e2c0ce34dbe9a (patch) | |
tree | 8f07c2f111caad5c05cfd12f09c7aa81196525ac | |
parent | 8b3967e595b410be302602aeef1da8ce2b3feb1c (diff) | |
parent | eaa893ade15b1afab2c91f86bb738da2771cfa77 (diff) |
Merge remote-tracking branch 'origin/master'
-rw-r--r-- | .rr.yaml | 4 | ||||
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | service/limit/service.go | 2 |
4 files changed, 9 insertions, 3 deletions
@@ -70,7 +70,7 @@ limit: services: # monitor http workers http: - # maximum allowed memory consumption (soft) + # maximum allowed memory consumption per worker (soft) maxMemory: 100 # maximum time to live for the worker (soft) @@ -88,4 +88,4 @@ static: dir: "public" # list of extensions for forbid for serving. - forbid: [".php", ".htaccess"]
\ No newline at end of file + forbid: [".php", ".htaccess"] diff --git a/CHANGELOG.md b/CHANGELOG.md index 9253a4de..2b58dfea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,13 @@ CHANGELOG ========= +v1.4.1 (15.05.2019) +------------------- +- constrain service renamed to "limit" to equalize the definition with sample config + v1.4.0 (05.05.2019) ------------------- +- launch of official website https://roadrunner.dev/ - ENV variables in configs (automatic RR_ mapping and manual definition using "${ENV_NAME}" value) - the ability to safely remove the worker from the pool in runtime - minor performance improvements @@ -43,6 +43,7 @@ Features: - payload context and body - protocol, worker and job level error management (including PHP errors) - very fast (~250k rpc calls per second on Ryzen 1700X using 16 threads) +- integrations with Symfony, Laravel, Slim, CakePHP, Zend Expressive, Spiral - works on Windows Example: diff --git a/service/limit/service.go b/service/limit/service.go index 6cbc22be..6af571e2 100644 --- a/service/limit/service.go +++ b/service/limit/service.go @@ -6,7 +6,7 @@ import ( ) // ID defines controller service name. -const ID = "constrain" +const ID = "limit" // controllable defines the ability to attach rr controller. type controllable interface { |