Skip to content

Commit 7aa335f

Browse files
committed
adding new caching resource
1 parent 0a30a5e commit 7aa335f

File tree

4 files changed

+18
-1
lines changed

4 files changed

+18
-1
lines changed

all.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6565,6 +6565,12 @@ <h2>Caching resources</h2>
65656565
reading even though the author is describing his Microsoft code as the
65666566
impetus for writing the content.</p>
65676567
</li>
6568+
<li>
6569+
<p>While caching is a useful technique in many situations, it's important
6570+
to also note that there are
6571+
<a href="https://msol.io/blog/tech/2015/09/05/youre-probably-wrong-about-caching/">downsides to caching</a>
6572+
that many developers fail to take into consideration.</p>
6573+
</li>
65686574
</ul>
65696575
<h2>Caching learning checklist</h2>
65706576
<ol>

caching.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,12 @@ <h2>Caching resources</h2>
6565
reading even though the author is describing his Microsoft code as the
6666
impetus for writing the content.</p>
6767
</li>
68+
<li>
69+
<p>While caching is a useful technique in many situations, it's important
70+
to also note that there are
71+
<a href="https://msol.io/blog/tech/2015/09/05/youre-probably-wrong-about-caching/">downsides to caching</a>
72+
that many developers fail to take into consideration.</p>
73+
</li>
6874
</ul>
6975
<h2>Caching learning checklist</h2>
7076
<ol>

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>2015-09-06T17:11:47Z</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>2015-09-07T16:05:30Z</updated></feed>

source/content/pages/07-web-app-deployment/18-caching.markdown

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ A cache can be created for multiple layers of the stack.
3737
reading even though the author is describing his Microsoft code as the
3838
impetus for writing the content.
3939

40+
* While caching is a useful technique in many situations, it's important
41+
to also note that there are
42+
[downsides to caching](https://msol.io/blog/tech/2015/09/05/youre-probably-wrong-about-caching/)
43+
that many developers fail to take into consideration.
44+
4045

4146
## Caching learning checklist
4247
1. Analyze your web application for the slowest parts. It's likely there are

0 commit comments

Comments
 (0)