Skip to content

Commit 0a38b56

Browse files
committed
adding redis installation tutorial
1 parent 86a9c69 commit 0a38b56

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
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-07-13T10:19:46Z</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-07-14T09:05:09Z</updated></feed>

no-sql-datastore.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@ <h3>Key-value pair data stores</h3>
8686
for faster access than a traditional relational database, among many other
8787
use cases.</li>
8888
</ul>
89+
<h3>Key-value pair resources</h3>
90+
<ul>
91+
<li>"<a href="https://www.digitalocean.com/community/tutorials/how-to-install-and-use-redis">How To Install and Use Redis</a>"
92+
is a guide for getting up with the extremely useful in-memory data store.</li>
93+
</ul>
8994
<h2>Column-family table</h2>
9095
<p>A the column-family table class of NoSQL data stores builds on the key-value
9196
pair type. Each key-value pair is considered a row in the store while the

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,12 @@ on [hash map](http://en.wikipedia.org/wiki/Hash_table) data structures.
6565
use cases.
6666

6767

68+
### Key-value pair resources
69+
* "[How To Install and Use Redis](https://www.digitalocean.com/community/tutorials/how-to-install-and-use-redis)"
70+
is a guide for getting up with the extremely useful in-memory data store.
71+
72+
73+
6874
## Column-family table
6975
A the column-family table class of NoSQL data stores builds on the key-value
7076
pair type. Each key-value pair is considered a row in the store while the

0 commit comments

Comments
 (0)