You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using Laravel Queues and I am using IronMQ for it. But I have little bit confusion about how this process.
I have set my default connection in queue.php as 'default' => 'iron' and also set iron settings in same file.
Now I use
$this->dispatch(new createEvents($data, $user));
while createEvents class is a job class created as explained in Laravel tutorial. Now when following code is executed
$this->dispatch(new createEvents($data, $user));
It successfully creates a queue in my ironmQ account under project.
Now here is my confusion starts. I have queued some task to that queue but now how will I run that queue? How will I run the task that is queued? Do I need to create some extra code for it or Do I need to do some settings for it. Please guide
The text was updated successfully, but these errors were encountered:
It seems like Laravel support for IronIO is being removed. I submitted a patch to support IronIO v3 but it looks like that got reverted laravel/framework#10968 (comment) Since the revert it looks like support for IronIO is no longer going to be an option. Unless someone from IronIO steps in to get the integration fixed it looks like Laravel developers will move to SQS or roll your own Redis.
I am using Laravel Queues and I am using IronMQ for it. But I have little bit confusion about how this process.
I have set my default connection in
queue.php as 'default' => 'iron'
and also set iron settings in same file.Now I use
while
createEvents
class is a job class created as explained in Laravel tutorial. Now when following code is executed$this->dispatch(new createEvents($data, $user));
It successfully creates a queue in my ironmQ account under project.
Now here is my confusion starts. I have queued some task to that queue but now how will I run that queue? How will I run the task that is queued? Do I need to create some extra code for it or Do I need to do some settings for it. Please guide
The text was updated successfully, but these errors were encountered: