File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -60,14 +60,14 @@ Other important considerations when choosing a task queue would be:
6060
6161### Graphile Worker
6262
63- Graphile Worker is a natural fit for a PostGraphile stack due to it's
63+ Graphile Worker is a natural fit for a PostGraphile stack due to its
6464PostgreSQL-first nature. It is a simple library that runs Node.js code (or any
6565code Node.js can delegate to) when a task is queued within the database. Thanks
6666to PostgreSQL's ` LISTEN/NOTIFY ` pubsub features, Graphile Worker is notified
6767when a task is queued and can fetch, execute, and complete a trivial task in
68682-3ms from when it was queued; this results in your system feeling very snappy.
6969
70- Graphile Worker stores tasks into it's own schema within PostgreSQL, and offers
70+ Graphile Worker stores tasks into its own schema within PostgreSQL, and offers
7171a simple SQL API to create jobs. Queueing a job might look like:
7272
7373``` sql
You can’t perform that action at this time.
0 commit comments