Skip to content

Instantly share code, notes, and snippets.

@juriansluiman
Created January 7, 2014 10:58
Show Gist options
  • Save juriansluiman/8297785 to your computer and use it in GitHub Desktop.
Save juriansluiman/8297785 to your computer and use it in GitHub Desktop.
'slm_queue' => [
'worker' => [
'max_runs' => 100,
],
'queues' => [
'default' => [
'deleted_lifetime' => -1
],
],
'job_manager' => [
'factories' => [
'my-job' => 'MyModule\Factory\MyJobFactory'
],
],
'queue_manager' => ]
'factories' => [
'default' => 'SlmQueueDoctrine\Factory\DoctrineQueueFactory',
],
],
],
'slm_queue' => [
'options' => [
'worker' => [
'max_runs' => 100,
],
'queue' => [
'default' => [
'deleted_lifetime' => -1
],
],
],
'job_manager' => [
'factories' => [
'my-job' => 'MyModule\Factory\MyJobFactory'
],
],
'queue_manager' => ]
'factories' => [
'default' => 'SlmQueueDoctrine\Factory\DoctrineQueueFactory',
],
],
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment