, Gearman, , Gearman - gearman. http://gearman.org/protocol/. - Beanstalkd.
http://kr.imtqy.com/beanstalkd/
PHP, php .
beanstalk pheanstalk. https://github.com/pda/pheanstalk, .
:
$pheanstalk = new Pheanstalk('127.0.0.1');
$delay = 3;
$pheanstalk
->useTube('choose_tube_name')
->put("job payload goes here\n",
PheanstalkInterface::DEFAULT_PRIORITY,
$delay,
PheanstalkInterface::DEFAULT_TTR
);
while (1) {
$job = $pheanstalk
->watch('choose_tube_name')
->ignore('default')
->reserve();
echo $job->getData();
$pheanstalk->delete($job);
}
, / choose_tube_name ββ3 . 3 , .
, , , , , , while, , .
. , , , . / . while / while, .