Skip to content

Commit 38e5762

Browse files
committed
working on task queues page
1 parent 20c55e8 commit 38e5762

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
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-02-18T16:59:50Z</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-02-20T15:14:15Z</updated></feed>

source/content/pages/task-queues.rst

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ Task Queues
66
:slug: task-queues
77
:sort-order: 09
88

9-
Task queues handle asynchronous jobs that need to be processed outside the
10-
usual HTTP request-response cycle. The most common types of jobs for task
11-
queues include
9+
Task queues handle background work that need to be processed outside the
10+
usual HTTP request-response cycle. These tasks are handled asynchronously
11+
because HTTP requests must be responded back to by the server as fast as
12+
possible otherwise the user experience in the web browser will suffer. The
13+
most common types of jobs for task queues include
1214

1315
* calculating computationally expensive data analytics
1416

@@ -17,6 +19,9 @@ queues include
1719
* spreading out large numbers of independent database inserts over time
1820
instead of all at once
1921

22+
* aggregating collected data values on a fixed interval, such as every
23+
15 minutes
24+
2025

2126
Task Queue Resources
2227
--------------------

task-queues.html

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,18 @@
7575
<div class="row">
7676
<div class="col-md-8">
7777
<h1>Task Queues</h1>
78-
<p>Task queues handle asynchronous jobs that need to be processed outside the
79-
usual HTTP request-response cycle. The most common types of jobs for task
80-
queues include</p>
78+
<p>Task queues handle background work that need to be processed outside the
79+
usual HTTP request-response cycle. These tasks are handled asynchronously
80+
because HTTP requests must be responded back to by the server as fast as
81+
possible otherwise the user experience in the web browser will suffer. The
82+
most common types of jobs for task queues include</p>
8183
<ul class="simple">
8284
<li>calculating computationally expensive data analytics</li>
8385
<li>scheduling periodic jobs such as batch processes</li>
8486
<li>spreading out large numbers of independent database inserts over time
8587
instead of all at once</li>
88+
<li>aggregating collected data values on a fixed interval, such as every
89+
15 minutes</li>
8690
</ul>
8791
<div class="section" id="task-queue-resources">
8892
<h2>Task Queue Resources</h2>

0 commit comments

Comments
 (0)