Skip to content

Commit bf2ca9b

Browse files
committed
adding new reference to task queues
1 parent eb63182 commit bf2ca9b

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-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-03-31T12:54:28Z</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-03-31T16:08:44Z</updated></feed>

source/content/pages/15-task-queues/1501-task-queues.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,9 @@ most common types of jobs for task queues include
6060
* The "Django in Production" series by
6161
[Rob Golding](https://twitter.com/robgolding63) contains a post
6262
specifically on [Background Tasks](http://www.robgolding.com/blog/2011/11/27/django-in-production-part-2---background-tasks/).
63+
64+
* [Asynchronous Processing in Web Applications Part One](http://blog.thecodepath.com/2012/11/15/asynchronous-processing-in-web-applications-part-1-a-database-is-not-a-queue/)
65+
and [Part Two](http://blog.thecodepath.com/2013/01/06/asynchronous-processing-in-web-applications-part-2-developers-need-to-understand-message-queues/)
66+
are great reads for understanding the difference between a task queue and
67+
why you shouldn't use your database as one.
68+

task-queues.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,12 @@ <h2>Task queue resources</h2>
147147
<a href="https://twitter.com/robgolding63">Rob Golding</a> contains a post
148148
specifically on <a href="http://www.robgolding.com/blog/2011/11/27/django-in-production-part-2---background-tasks/">Background Tasks</a>.</p>
149149
</li>
150+
<li>
151+
<p><a href="http://blog.thecodepath.com/2012/11/15/asynchronous-processing-in-web-applications-part-1-a-database-is-not-a-queue/">Asynchronous Processing in Web Applications Part One</a>
152+
and <a href="http://blog.thecodepath.com/2013/01/06/asynchronous-processing-in-web-applications-part-2-developers-need-to-understand-message-queues/">Part Two</a>
153+
are great reads for understanding the difference between a task queue and
154+
why you shouldn't use your database as one.</p>
155+
</li>
150156
</ul>
151157
<br/>
152158
Next read the

0 commit comments

Comments
 (0)