Skip to content

Commit ddc7a67

Browse files
committed
Added Flask + RQ resource
1 parent 958ffe1 commit ddc7a67

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

content/pages/07-web-development/26-task-queues.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,8 @@ when scaling out a large deployment of distributed task queues.
184184
provides some solid advice on retry delays, the -Ofair flag and global
185185
task timeouts for Celery.
186186

187+
* [Asynchronous Tasks with Flask and Redis Queue](https://testdriven.io/asynchronous-tasks-with-flask-and-redis-queue)
188+
looks at how to configure Redis Queue to handle long-running tasks in a Flask app.
187189

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

content/pages/07-web-development/28-rq-redis-queue.markdown

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ track of tasks in the queue that need to be executed.
1818

1919

2020
## RQ resources
21-
* The [RQ intro post](http://nvie.com/posts/introducing-rq/) contains
21+
* The [RQ intro post](http://nvie.com/posts/introducing-rq/) contains
2222
information on design decisions and how to use RQ in your projects.
2323

2424
* [International Space Station notifications with Python and Redis Queue (RQ)](https://www.twilio.com/blog/2015/11/international-space-station-notifications-with-python-redis-queue-and-twilio-copilot.html)
25-
shows how to combine the RQ task queue library with Flask to send
25+
shows how to combine the RQ task queue library with Flask to send
2626
text message notifications every time a condition is met - in this blog
2727
post's case that the ISS is currently flying over your location on
2828
Earth.
@@ -38,3 +38,5 @@ track of tasks in the queue that need to be executed.
3838
[Flask](/flask.html)-based dashboard for viewing queues, workers and
3939
other critical information when using RQ.
4040

41+
* [Asynchronous Tasks with Flask and Redis Queue](https://testdriven.io/asynchronous-tasks-with-flask-and-redis-queue)
42+
looks at how to configure RQ to handle long-running tasks in a Flask app.

0 commit comments

Comments
 (0)