From 87c4fafccb9072b3034cf034290b2ba6268ce268 Mon Sep 17 00:00:00 2001 From: Donne Martin Date: Wed, 1 Mar 2017 20:40:25 -0800 Subject: [PATCH] Add Asynchronism intro section --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 81d89645..5ec44610 100644 --- a/README.md +++ b/README.md @@ -1397,3 +1397,13 @@ Refresh-ahead can result in reduced latency vs read-through if the cache can acc * [Scalability](http://www.lecloud.net/post/9246290032/scalability-for-dummies-part-3-cache) * [AWS ElastiCache strategies](http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/Strategies.html) * [Wikipedia](https://en.wikipedia.org/wiki/Cache_(computing)) + +## Asynchronism + +

+ +
+ Source: Intro to architecting systems for scale +

+ +Asynchronous workflows help reduce request times for expensive operations that would otherwise be performed in-line. They can also help by doing time-consuming work in advance, such as periodic aggregation of data.