Skip to content

Commit 2107a85

Browse files
committed
adding new task queues resource
1 parent b3dff35 commit 2107a85

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

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>2014-06-17T09:06:11Z</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>2014-06-18T07:24:18Z</updated></feed>

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,10 @@ when scaling out a large deployment of distributed task queues.
111111
* [Introducing Celery for Python+Django](http://www.linuxforu.com/2013/12/introducing-celery-pythondjango/)
112112
provides an introduction to the Celery task queue.
113113

114+
* [Celery - Best Practices](https://denibertovic.com/posts/celery-best-practices/)
115+
explains things you should not do with Celery and shows some underused
116+
features for making task queues easier to work with.
117+
114118
* The "Django in Production" series by
115119
[Rob Golding](https://twitter.com/robgolding63) contains a post
116120
specifically on [Background Tasks](http://www.robgolding.com/blog/2011/11/27/django-in-production-part-2---background-tasks/).

task-queues.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,11 @@ <h2>Task queue resources</h2>
145145
provides an introduction to the Celery task queue.</p>
146146
</li>
147147
<li>
148+
<p><a href="https://denibertovic.com/posts/celery-best-practices/">Celery - Best Practices</a>
149+
explains things you should not do with Celery and shows some underused
150+
features for making task queues easier to work with.</p>
151+
</li>
152+
<li>
148153
<p>The "Django in Production" series by
149154
<a href="https://twitter.com/robgolding63">Rob Golding</a> contains a post
150155
specifically on <a href="http://www.robgolding.com/blog/2011/11/27/django-in-production-part-2---background-tasks/">Background Tasks</a>.</p>

0 commit comments

Comments
 (0)