Skip to content

Commit 48c66f8

Browse files
committed
adding nosql resource
1 parent 9d9a83d commit 48c66f8

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-5
lines changed

all.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1872,8 +1872,15 @@ <h3>Key-value pair data stores</h3>
18721872
</ul>
18731873
<h3>Key-value pair resources</h3>
18741874
<ul>
1875-
<li>"<a href="https://www.digitalocean.com/community/tutorials/how-to-install-and-use-redis">How To Install and Use Redis</a>"
1876-
is a guide for getting up with the extremely useful in-memory data store.</li>
1875+
<li>
1876+
<p>"<a href="https://www.digitalocean.com/community/tutorials/how-to-install-and-use-redis">How To Install and Use Redis</a>"
1877+
is a guide for getting up with the extremely useful in-memory data store.</p>
1878+
</li>
1879+
<li>
1880+
<p>This video on
1881+
<a href="https://www.youtube.com/watch?v=rP9EKvWt0zo">Scaling Redis at Twitter</a> is
1882+
a detailed look behind the scenes with a massive Redis deployment.</p>
1883+
</li>
18771884
</ul>
18781885
<h2>Document-oriented</h2>
18791886
<p>A document-oriented database provides a semi-structured representation for

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-09-16T08:58:53Z</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-09-17T08:14:55Z</updated></feed>

no-sql-datastore.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,15 @@ <h3>Key-value pair data stores</h3>
6363
</ul>
6464
<h3>Key-value pair resources</h3>
6565
<ul>
66-
<li>"<a href="https://www.digitalocean.com/community/tutorials/how-to-install-and-use-redis">How To Install and Use Redis</a>"
67-
is a guide for getting up with the extremely useful in-memory data store.</li>
66+
<li>
67+
<p>"<a href="https://www.digitalocean.com/community/tutorials/how-to-install-and-use-redis">How To Install and Use Redis</a>"
68+
is a guide for getting up with the extremely useful in-memory data store.</p>
69+
</li>
70+
<li>
71+
<p>This video on
72+
<a href="https://www.youtube.com/watch?v=rP9EKvWt0zo">Scaling Redis at Twitter</a> is
73+
a detailed look behind the scenes with a massive Redis deployment.</p>
74+
</li>
6875
</ul>
6976
<h2>Document-oriented</h2>
7077
<p>A document-oriented database provides a semi-structured representation for

source/content/pages/04-data/0402-no-sql-datastores.markdown

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ on [hash map](http://en.wikipedia.org/wiki/Hash_table) data structures.
4747
* "[How To Install and Use Redis](https://www.digitalocean.com/community/tutorials/how-to-install-and-use-redis)"
4848
is a guide for getting up with the extremely useful in-memory data store.
4949

50+
* This video on
51+
[Scaling Redis at Twitter](https://www.youtube.com/watch?v=rP9EKvWt0zo) is
52+
a detailed look behind the scenes with a massive Redis deployment.
53+
5054

5155
## Document-oriented
5256
A document-oriented database provides a semi-structured representation for

0 commit comments

Comments
 (0)