Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions content/pages/04-web-development/29-task-queues.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,8 @@ when scaling out a large deployment of distributed task queues.
* [Asynchronous Tasks with Flask and Redis Queue](https://testdriven.io/asynchronous-tasks-with-flask-and-redis-queue)
looks at how to configure Redis Queue to handle long-running tasks in a Flask app.

* [Developing an Asynchronous Task Queue in Python](https://testdriven.io/developing-an-asynchronous-task-queue-in-python) looks at how to implement several asynchronous task queues using Python's multiprocessing library and Redis.

## Task queue learning checklist
1. Pick a slow function in your project that is called during an HTTP
request.
Expand Down