Skip to content

Commit

Permalink
Merge pull request #93 from ericcarboni/patch-1
Browse files Browse the repository at this point in the history
docs: fix typo
  • Loading branch information
manast committed Dec 17, 2019
2 parents 9b4042d + 5fcf40b commit d8bf244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/gitbook/guide/jobs/fifo.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: 'First-In, First-Out'

# FIFO

The first type of jobs we are going to describe is the FIFO \(First-In, First-Out\) type. This is the standard type when adding jobs to a queue. The jobs are processed in the order they are inserted into the queue. This order is preserved independently onn the amount of processors you have, however if you have more than one worker or concurrency larger than 1, even though the workers will start the jobs in order, they may be completed in a slightly different order, since some jobs may take more time to complete than others.
The first type of jobs we are going to describe is the FIFO \(First-In, First-Out\) type. This is the standard type when adding jobs to a queue. The jobs are processed in the order they are inserted into the queue. This order is preserved independently on the amount of processors you have, however if you have more than one worker or concurrency larger than 1, even though the workers will start the jobs in order, they may be completed in a slightly different order, since some jobs may take more time to complete than others.



0 comments on commit d8bf244

Please sign in to comment.