Skip to content

Commit 7f7a09e

Browse files
authored
Update background-tasks.md (#284)
1 parent 20fc545 commit 7f7a09e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/pages/postgraphile/background-tasks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
6464
PostgreSQL-first nature. It is a simple library that runs Node.js code (or any
6565
code Node.js can delegate to) when a task is queued within the database. Thanks
6666
to PostgreSQL's `LISTEN/NOTIFY` pubsub features, Graphile Worker is notified
6767
when a task is queued and can fetch, execute, and complete a trivial task in
6868
2-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
7171
a simple SQL API to create jobs. Queueing a job might look like:
7272

7373
```sql

0 commit comments

Comments
 (0)