Skip to content

Commit 5682467

Browse files
committed
new task queue resources
1 parent a18aecd commit 5682467

File tree

6 files changed

+21
-1
lines changed

6 files changed

+21
-1
lines changed

all.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3160,6 +3160,12 @@ <h2>Task queue resources</h2>
31603160
<a href="https://engineering.heroku.com/blogs/2014-09-15-securing-celery">secure Celery</a>
31613161
when tasks are otherwise sent over unencrypted networks.</p>
31623162
</li>
3163+
<li>
3164+
<p>Miguel Grinberg wrote a nice post on using the
3165+
<a href="http://blog.miguelgrinberg.com/post/using-celery-with-flask">task queue Celery with Flask</a>.
3166+
He gives an overview of Celery followed by specific code to set up the task
3167+
queue and integrate it with Flask.</p>
3168+
</li>
31633169
</ul>
31643170
<h2>Task queue learning checklist</h2>
31653171
<p><i class="fa fa-check-square-o"></i>
@@ -4413,6 +4419,7 @@ <h1>Change Log</h1>
44134419
<h2>2015</h2>
44144420
<h3>January</h3>
44154421
<ul>
4422+
<li>New task queue resources.</li>
44164423
<li>Major update with the beginning of a page on <a href="/docker.html">Docker</a>, split
44174424
out static file handling resources on the <a href="/django.html">Django</a> page
44184425
and a new section on Python programming language popularity on the

change-log.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ <h1>Change Log</h1>
4646
<h2>2015</h2>
4747
<h3>January</h3>
4848
<ul>
49+
<li>New task queue resources.</li>
4950
<li>Major update with the beginning of a page on <a href="/docker.html">Docker</a>, split
5051
out static file handling resources on the <a href="/django.html">Django</a> page
5152
and a new section on Python programming language popularity on the

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-01-20T09:18:18Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-01-21T10:33:37Z</updated></feed>

source/content/pages/07-performance/0703-task-queues.markdown

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,11 @@ when scaling out a large deployment of distributed task queues.
152152
[secure Celery](https://engineering.heroku.com/blogs/2014-09-15-securing-celery)
153153
when tasks are otherwise sent over unencrypted networks.
154154

155+
* Miguel Grinberg wrote a nice post on using the
156+
[task queue Celery with Flask](http://blog.miguelgrinberg.com/post/using-celery-with-flask).
157+
He gives an overview of Celery followed by specific code to set up the task
158+
queue and integrate it with Flask.
159+
155160

156161
## Task queue learning checklist
157162
<i class="fa fa-check-square-o"></i>

source/content/pages/11-misc/1104-change-log.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ the
2424

2525
## 2015
2626
### January
27+
* New task queue resources.
2728
* Major update with the beginning of a page on [Docker](/docker.html), split
2829
out static file handling resources on the [Django](/django.html) page
2930
and a new section on Python programming language popularity on the

task-queues.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,12 @@ <h2>Task queue resources</h2>
195195
<a href="https://engineering.heroku.com/blogs/2014-09-15-securing-celery">secure Celery</a>
196196
when tasks are otherwise sent over unencrypted networks.</p>
197197
</li>
198+
<li>
199+
<p>Miguel Grinberg wrote a nice post on using the
200+
<a href="http://blog.miguelgrinberg.com/post/using-celery-with-flask">task queue Celery with Flask</a>.
201+
He gives an overview of Celery followed by specific code to set up the task
202+
queue and integrate it with Flask.</p>
203+
</li>
198204
</ul>
199205
<h2>Task queue learning checklist</h2>
200206
<p><i class="fa fa-check-square-o"></i>

0 commit comments

Comments
 (0)