Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sneakycrow committed Oct 16, 2024
1 parent 3a806f3 commit c8b4f87
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ So, what we're going to do in this article is create a queue system that can run
`PROCESS_VIDEO`, represent processing a video into our raw stream. A goal of this method is to understand simple queueing systems, but also to take
advantage of common resources your small projects probably already have access to, like a database.

This queue system will use Postgres to manage jobs, and will take advantage of `UPDATE SKIP FOR LOCKED` when querying for jobs
This queue system will use Postgres to manage jobs, and will take advantage of `SKIP LOCKED` when querying for jobs
to add some concurrency.

This is largely inspired by [Sylvain Kerkour's post on creating a job queue system in Rust](https://kerkour.com/rust-job-queue-with-postgresql),
Expand Down

0 comments on commit c8b4f87

Please sign in to comment.