我已将配置设置为使用本地 beanstalkd 服务器:
'beanstalkd' => array(
'driver' => 'beanstalkd',
'host' => 'localhost',
'queue' => 'default',
)
如何将作业推送到另一个 beanstalkd 服务器?
Queue::push(function($job)
{
// This pushes to local beanstalkd
});
Queue::pushToRemoteBeanstalkdInstance(function($job)
{
// ?
});