I use the Beantalkd and Yii2 framework. To add to the queue, I use something like this:
Yii::$app->beanstalk
->putInTube('tube2', ['param' => 'val'], PheanstalkInterface::DEFAULT_PRIORITY, PheanstalkInterface::DEFAULT_DELAY);
But now I need to complete some task right away at the specified time, is this possible with Beantalkd, or do I need something like Resque?
sharp source
share