File tree Expand file tree Collapse file tree 5 files changed +24
-9
lines changed
Expand file tree Collapse file tree 5 files changed +24
-9
lines changed Original file line number Diff line number Diff 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,
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff 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/ ) .
Original file line number Diff line number Diff line change 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,
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments