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
Copy file name to clipboardExpand all lines: src/slides.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -75,12 +75,12 @@ This is a common structure in programming when processing data.
75
75
76
76
## What Is The Queue API?
77
77
78
-
The Queue API creates a queue data structure and allows tasks to be processed in asynchronously. This normally in order to prevent timeout errors or memory problems.
78
+
The Queue API creates a queue data structure and allows tasks to be processed asynchronously. This is normally in order to prevent timeout errors or memory problems.
79
79
80
80
---
81
81
82
82
## The Queue API
83
-
- The API is highly extensible. By default we have a database queue and a memory queue interfaces.
83
+
- The API is highly extensible. By default we have a database queue and a memory queue interface.
84
84
- When creating a queue it is common for the database queue to be used.
85
85
- The cron system automatically picks up database queue items and processes them.
86
86
@@ -286,7 +286,7 @@ Remember the queue structure. If we throw an item into the queue we put it back
286
286
287
287
## Processing A Queue
288
288
289
-
The eaiest way to process a queue is to run cron.
289
+
The easiest way to process a queue is to run cron.
290
290
291
291
- Via the cron processor form at "/admin/config/system/cron".
0 commit comments