@@ -11,6 +11,16 @@ Queues
11
11
.. meta::
12
12
:keywords: php framework, odm, code example, jobs
13
13
14
+ Overview
15
+ --------
16
+
17
+ In this guide, you can learn how to use MongoDB as your database for
18
+ Laravel Queue. Laravel Queue allows you to create queued jobs that are
19
+ processed in the background.
20
+
21
+ Configuration
22
+ -------------
23
+
14
24
To use MongoDB as your database for Laravel Queue, change
15
25
the driver in your application's ``config/queue.php`` file:
16
26
@@ -22,7 +32,7 @@ the driver in your application's ``config/queue.php`` file:
22
32
// You can also specify your jobs-specific database
23
33
// in the config/database.php file
24
34
'connection' => 'mongodb',
25
- 'collection ' => 'jobs',
35
+ 'table ' => 'jobs',
26
36
'queue' => 'default',
27
37
// Optional setting
28
38
// 'retry_after' => 60,
@@ -48,7 +58,7 @@ the behavior of the queue:
48
58
``mongodb`` connection. The driver uses the default connection if
49
59
a connection is not specified.
50
60
51
- * - ``collection ``
61
+ * - ``table ``
52
62
- **Required** Name of the MongoDB collection to
53
63
store jobs to process.
54
64
@@ -60,7 +70,7 @@ the behavior of the queue:
60
70
before retrying a job that is being processed. The value is
61
71
``60`` by default.
62
72
63
- To use MongoDB to handle failed jobs, create a ``failed`` entry in your
73
+ To use MongoDB to handle * failed jobs* , create a ``failed`` entry in your
64
74
application's ``config/queue.php`` file and specify the database and
65
75
collection:
66
76
@@ -69,7 +79,7 @@ collection:
69
79
'failed' => [
70
80
'driver' => 'mongodb',
71
81
'database' => 'mongodb',
72
- 'collection ' => 'failed_jobs',
82
+ 'table ' => 'failed_jobs',
73
83
],
74
84
75
85
The following table describes properties that you can specify to configure
@@ -86,21 +96,20 @@ how to handle failed jobs:
86
96
- **Required** Queue driver to use. The value of
87
97
this property must be ``mongodb``.
88
98
89
- * - ``connection ``
99
+ * - ``database ``
90
100
- Database connection used to store jobs. It must be
91
101
a ``mongodb`` connection. The driver uses the default connection
92
102
if a connection is not specified.
93
103
94
- * - ``collection ``
104
+ * - ``table ``
95
105
- Name of the MongoDB collection to store failed
96
106
jobs. The value is ``failed_jobs`` by default.
97
107
98
- Then, add the service provider in your application's
99
- ``config/app.php`` file:
100
-
101
- .. code-block:: php
102
-
103
- MongoDB\Laravel\MongoDBQueueServiceProvider::class,
108
+ To register failed jobs, you can use the default failed
109
+ job provider from Laravel. To learn more, see
110
+ `Dealing With Failed Jobs
111
+ <https://laravel.com/docs/{+laravel-docs-version+}/queues#dealing-with-failed-jobs>`__ in
112
+ the Laravel documentation on Queues.
104
113
105
114
Job Batching
106
115
------------
@@ -124,7 +133,7 @@ application's ``config/queue.php`` file:
124
133
'batching' => [
125
134
'driver' => 'mongodb',
126
135
'database' => 'mongodb',
127
- 'collection ' => 'job_batches',
136
+ 'table ' => 'job_batches',
128
137
],
129
138
130
139
The following table describes properties that you can specify to configure
@@ -141,18 +150,18 @@ job batching:
141
150
- **Required** Queue driver to use. The value of
142
151
this property must be ``mongodb``.
143
152
144
- * - ``connection ``
153
+ * - ``database ``
145
154
- Database connection used to store jobs. It must be a
146
155
``mongodb`` connection. The driver uses the default connection if
147
156
a connection is not specified.
148
157
149
- * - ``collection ``
158
+ * - ``table ``
150
159
- Name of the MongoDB collection to store job
151
160
batches. The value is ``job_batches`` by default.
152
161
153
162
Then, add the service provider in your application's ``config/app.php``
154
163
file:
155
164
156
- .. code-block:: php
157
-
158
- MongoDB\Laravel\MongoDBBusServiceProvider::class,
165
+ The {+odm-short+} automatically provides the
166
+ ``MongoDB\Laravel\MongoDBBusServiceProvider::class`` class as the
167
+ service provider for job batching.
0 commit comments