There is now a memory limit for the poller

This commit is contained in:
Michael 2017-04-29 17:36:46 +00:00
parent 46371242e5
commit 715e15cbe1
4 changed files with 48 additions and 1 deletions

View file

@ -41,6 +41,10 @@ function poller_run($argv, $argc){
$a->start_process();
if ($a->min_memory_reached()) {
return;
}
if (poller_max_connections_reached()) {
return;
}