Skip to content

Commit 00d5dcb

Browse files
committed
adding more content to task queues and updating change log
1 parent 481326c commit 00d5dcb

File tree

5 files changed

+24
-9
lines changed

5 files changed

+24
-9
lines changed

change-log.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,10 @@ <h1>Change Log</h1>
8181
<h2>2014</h2>
8282
<h3>March</h3>
8383
<ul>
84-
<li>Added why is this piece necessary for databases, WSGI servers and web
85-
frameworks.</li>
84+
<li>Updated task queues page with better explanations and many more curated
85+
resources.</li>
86+
<li>Added why is this piece necessary for databases, WSGI servers, web
87+
frameworks and application dependencies.</li>
8688
<li>Updating best resources page with newsletters and a few additional beyond
8789
the basics resources.</li>
8890
<li>Adding 'why is this necessary' sections to servers, operating systems,

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-24T09:24:24Z</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-24T09:29:50Z</updated></feed>

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

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ most common types of jobs for task queues include
2828

2929
* The [RQ (Redis Queue)](http://python-rq.org/) is a simple Python
3030
library for queueing jobs and processing them in the background with workers.
31-
It is backed by Redis and it is designed to have a low barrier to entry.
32-
It should be integrated in your web stack easily.
31+
RQ is backed by Redis and it is designed to have a low barrier to entry.
32+
The [intro post](http://nvie.com/posts/introducing-rq/) contains information
33+
on design decisions and how to use RQ.
3334

3435
* [Taskmaster](https://github.com/dcramer/taskmaster) is a lightweight simple
3536
distributed queue for handling large volumes of one-off tasks.
@@ -55,3 +56,7 @@ most common types of jobs for task queues include
5556

5657
* [Introducing Celery for Python+Django](http://www.linuxforu.com/2013/12/introducing-celery-pythondjango/)
5758
provides an introduction to the Celery task queue.
59+
60+
* The "Django in Production" series by
61+
[Rob Golding](https://twitter.com/robgolding63) contains a post
62+
specifically on [Background Tasks](http://www.robgolding.com/blog/2011/11/27/django-in-production-part-2---background-tasks/).

source/content/pages/change-log.markdown

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ the
1212

1313
## 2014
1414
### March
15-
* Added why is this piece necessary for databases, WSGI servers and web
16-
frameworks.
15+
* Updated task queues page with better explanations and many more curated
16+
resources.
17+
* Added why is this piece necessary for databases, WSGI servers, web
18+
frameworks and application dependencies.
1719
* Updating best resources page with newsletters and a few additional beyond
1820
the basics resources.
1921
* Adding 'why is this necessary' sections to servers, operating systems,

task-queues.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,9 @@ <h2>Task queue projects</h2>
105105
<li>
106106
<p>The <a href="http://python-rq.org/">RQ (Redis Queue)</a> is a simple Python
107107
library for queueing jobs and processing them in the background with workers.
108-
It is backed by Redis and it is designed to have a low barrier to entry.
109-
It should be integrated in your web stack easily.</p>
108+
RQ is backed by Redis and it is designed to have a low barrier to entry.
109+
The <a href="http://nvie.com/posts/introducing-rq/">intro post</a> contains information
110+
on design decisions and how to use RQ.</p>
110111
</li>
111112
<li>
112113
<p><a href="https://github.com/dcramer/taskmaster">Taskmaster</a> is a lightweight simple
@@ -141,6 +142,11 @@ <h2>Task queue resources</h2>
141142
<p><a href="http://www.linuxforu.com/2013/12/introducing-celery-pythondjango/">Introducing Celery for Python+Django</a>
142143
provides an introduction to the Celery task queue.</p>
143144
</li>
145+
<li>
146+
<p>The "Django in Production" series by
147+
<a href="https://twitter.com/robgolding63">Rob Golding</a> contains a post
148+
specifically on <a href="http://www.robgolding.com/blog/2011/11/27/django-in-production-part-2---background-tasks/">Background Tasks</a>.</p>
149+
</li>
144150
</ul>
145151
<br/>
146152
Next read the

0 commit comments

Comments
 (0)