File tree Expand file tree Collapse file tree 3 files changed +16
-7
lines changed
Expand file tree Collapse file tree 3 files changed +16
-7
lines changed 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-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 >
Original file line number Diff line number Diff 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
2126Task Queue Resources
2227--------------------
Original file line number Diff line number Diff line change 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
8587instead 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 >
You can’t perform that action at this time.
0 commit comments