- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
<?php
namespace LoadBalance\Sensors;
class CPUSensor extends Sensor
{
/**
* Calculate pause to sleep machine
*
* @retutn int Seconds to sleep
*/
public static function calculate():int
{
$load = sys_getloadavg();
$current = $load[0];
if ($current <= 15)
{
$sleeptime = 0;
}
else if ($current > 15 && $current <= 30)
{
$sleeptime = 5;
}
else if ($current > 30 && $current <= 50)
{
$sleeptime = 10;
}
else
{
$sleeptime = 60;
} //end if
return $sleeptime;
} //end calculate()
} //end class
?>
bormand 11.10.2017 07:57 # 0
roman-kashitsyn 11.10.2017 10:32 # +3
roman-kashitsyn 11.10.2017 10:49 # +6
inho 11.10.2017 19:34 # 0
Гамно
SemaReal 13.10.2017 04:01 # 0
inkanus-gray 13.10.2017 04:41 # 0
SemaReal 13.10.2017 04:02 # 0
тот неловкий момент когда даже восьмая джава с ее дефалт методами в интерфейсе более лучем чем пхп
SemaReal 13.10.2017 04:03 # +2
>>use extreme programming, unit-tests and good code is my best friends :)
>>Also i'am like sport, master in powerlifting and in bench press
Я похож на спорт, да
dxd 13.10.2017 07:02 # +2
Я, типа, спорт, мастер пауэлифтинга и всё такое.
inho 13.10.2017 09:42 # 0
как надо?
vistefan 13.10.2017 09:43 # 0
SemaReal 13.10.2017 04:04 # +3
https://github.com/AndreyMashukov/shorty/blob/master/classes/dao/MySQLImplementation.php