我已将配置设置为使用本地beantalkd服务器:

'beanstalkd' => array(
    'driver' => 'beanstalkd',
    'host'   => 'localhost',
    'queue'  => 'default',
)

如何将作业推送到另一个beantalkd服务器?
Queue::push(function($job)
{
  // This pushes to local beanstalkd
});

Queue::pushToRemoteBeanstalkdInstance(function($job)
{
  // ?
});

最佳答案

您必须在队列配置文件中进行一个额外的配置,因此它将看起来像这样:

'connections' => array(

    'beanstalkd' => array(
        'driver' => 'beanstalkd',
        'host'   => 'localhost',
        'queue'  => 'default',
    ),

    'beanstalkd_remote' => array(
        'driver' => 'beanstalkd',
        'host'   => 'remotehost',
        'queue'  => 'default',
    )
)

如果默认设置为“beanstalkd”,则可以继续以常规方式调用它。

如果要使用远程队列,只需在调用中定义连接,例如:
Queue::connection('beanstalkd_remote')->push(function($job)
{
    // This pushes to remote beanstalkd
});

关于laravel - 推送到其他beantalkd服务器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17478238/

10-10 15:54