Skip to content

Commit 30a37e4

Browse files
committed
adding new redis resource
1 parent 8ba310b commit 30a37e4

File tree

4 files changed

+28
-10
lines changed

4 files changed

+28
-10
lines changed

all.html

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3101,15 +3101,21 @@ <h3>Key-value pair data stores</h3>
31013101
</ul>
31023102
<h3>Key-value pair resources</h3>
31033103
<ul>
3104-
<li>
3105-
<p><a href="http://dba.stackexchange.com/questions/607/what-is-a-key-value-store-database">What is a key-value store database?</a>
3106-
is a Stack Overflow Q&amp;A that straight on answers this subject.</p>
3107-
</li>
3104+
<li><a href="http://dba.stackexchange.com/questions/607/what-is-a-key-value-store-database">What is a key-value store database?</a>
3105+
is a Stack Overflow Q&amp;A that straight on answers this subject.</li>
3106+
</ul>
3107+
<h3>Redis resources</h3>
3108+
<ul>
31083109
<li>
31093110
<p>"<a href="https://www.digitalocean.com/community/tutorials/how-to-install-and-use-redis">How To Install and Use Redis</a>"
31103111
is a guide for getting up with the extremely useful in-memory data store.</p>
31113112
</li>
31123113
<li>
3114+
<p><a href="http://degizmo.com/2010/03/22/getting-started-redis-and-python/">Getting started with Redis and Python</a>
3115+
is a walkthrough for installing and playing around with the basics of
3116+
Redis.</p>
3117+
</li>
3118+
<li>
31133119
<p>This video on
31143120
<a href="https://www.youtube.com/watch?v=rP9EKvWt0zo">Scaling Redis at Twitter</a> is
31153121
a detailed look behind the scenes with a massive Redis deployment.</p>

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-06-14T10:55:29Z</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-06-14T12:57:51Z</updated></feed>

no-sql-datastore.html

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,21 @@ <h3>Key-value pair data stores</h3>
6969
</ul>
7070
<h3>Key-value pair resources</h3>
7171
<ul>
72-
<li>
73-
<p><a href="http://dba.stackexchange.com/questions/607/what-is-a-key-value-store-database">What is a key-value store database?</a>
74-
is a Stack Overflow Q&amp;A that straight on answers this subject.</p>
75-
</li>
72+
<li><a href="http://dba.stackexchange.com/questions/607/what-is-a-key-value-store-database">What is a key-value store database?</a>
73+
is a Stack Overflow Q&amp;A that straight on answers this subject.</li>
74+
</ul>
75+
<h3>Redis resources</h3>
76+
<ul>
7677
<li>
7778
<p>"<a href="https://www.digitalocean.com/community/tutorials/how-to-install-and-use-redis">How To Install and Use Redis</a>"
7879
is a guide for getting up with the extremely useful in-memory data store.</p>
7980
</li>
8081
<li>
82+
<p><a href="http://degizmo.com/2010/03/22/getting-started-redis-and-python/">Getting started with Redis and Python</a>
83+
is a walkthrough for installing and playing around with the basics of
84+
Redis.</p>
85+
</li>
86+
<li>
8187
<p>This video on
8288
<a href="https://www.youtube.com/watch?v=rP9EKvWt0zo">Scaling Redis at Twitter</a> is
8389
a detailed look behind the scenes with a massive Redis deployment.</p>

source/content/pages/05-data/03-nosql.markdown

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,16 @@ on [hash map](http://en.wikipedia.org/wiki/Hash_table) data structures.
4343
* [What is a key-value store database?](http://dba.stackexchange.com/questions/607/what-is-a-key-value-store-database)
4444
is a Stack Overflow Q&A that straight on answers this subject.
4545

46+
47+
48+
### Redis resources
4649
* "[How To Install and Use Redis](https://www.digitalocean.com/community/tutorials/how-to-install-and-use-redis)"
4750
is a guide for getting up with the extremely useful in-memory data store.
4851

52+
* [Getting started with Redis and Python](http://degizmo.com/2010/03/22/getting-started-redis-and-python/)
53+
is a walkthrough for installing and playing around with the basics of
54+
Redis.
55+
4956
* This video on
5057
[Scaling Redis at Twitter](https://www.youtube.com/watch?v=rP9EKvWt0zo) is
5158
a detailed look behind the scenes with a massive Redis deployment.
@@ -59,7 +66,6 @@ on [hash map](http://en.wikipedia.org/wiki/Hash_table) data structures.
5966
Python 3.4+ for working with Redis.
6067

6168

62-
6369
## Document-oriented
6470
A document-oriented database provides a semi-structured representation for
6571
nested data.

0 commit comments

Comments
 (0)