Skip to content

Commit e3f8273

Browse files
committed
changing key value pair to first in no sql page
1 parent d2aaae0 commit e3f8273

File tree

4 files changed

+51
-52
lines changed

4 files changed

+51
-52
lines changed

all.html

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1931,6 +1931,22 @@ <h1>NoSQL Data Stores</h1>
19311931
</ol>
19321932
<p>These persistent data storage representations are commonly used to augment,
19331933
rather than completely replace, relational databases.</p>
1934+
<h2>Key-value Pair</h2>
1935+
<p>Key-value pair data stores are based
1936+
on <a href="http://en.wikipedia.org/wiki/Hash_table">hash map</a> data structures.</p>
1937+
<h3>Key-value pair data stores</h3>
1938+
<ul>
1939+
<li><a href="http://redis.io/">Redis</a> is an open source in-memory key-value pair data
1940+
store. Redis is often called "the Swiss Army Knife of web application
1941+
development." It can be used for caching, queuing, and storing session data
1942+
for faster access than a traditional relational database, among many other
1943+
use cases.</li>
1944+
</ul>
1945+
<h3>Key-value pair resources</h3>
1946+
<ul>
1947+
<li>"<a href="https://www.digitalocean.com/community/tutorials/how-to-install-and-use-redis">How To Install and Use Redis</a>"
1948+
is a guide for getting up with the extremely useful in-memory data store.</li>
1949+
</ul>
19341950
<h2>Document-oriented</h2>
19351951
<p>A document-oriented database provides a semi-structured representation for
19361952
nested data. </p>
@@ -1956,22 +1972,6 @@ <h3>Document-oriented data store resources</h3>
19561972
<li><a href="http://www.optinidus.com/blogs/guide-to-mongodb-for-startups/">MongoDB for startups</a>
19571973
is a guide about using non-relational databases in green field environments.</li>
19581974
</ul>
1959-
<h2>Key-value Pair</h2>
1960-
<p>Key-value pair data stores are based
1961-
on <a href="http://en.wikipedia.org/wiki/Hash_table">hash map</a> data structures.</p>
1962-
<h3>Key-value pair data stores</h3>
1963-
<ul>
1964-
<li><a href="http://redis.io/">Redis</a> is an open source in-memory key-value pair data
1965-
store. Redis is often called "the Swiss Army Knife of web application
1966-
development." It can be used for caching, queuing, and storing session data
1967-
for faster access than a traditional relational database, among many other
1968-
use cases.</li>
1969-
</ul>
1970-
<h3>Key-value pair resources</h3>
1971-
<ul>
1972-
<li>"<a href="https://www.digitalocean.com/community/tutorials/how-to-install-and-use-redis">How To Install and Use Redis</a>"
1973-
is a guide for getting up with the extremely useful in-memory data store.</li>
1974-
</ul>
19751975
<h2>Column-family table</h2>
19761976
<p>A the column-family table class of NoSQL data stores builds on the key-value
19771977
pair type. Each key-value pair is considered a row in the store while the

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-08-03T09:37:42Z</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-08-03T09:41:26Z</updated></feed>

no-sql-datastore.html

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,22 @@ <h1>NoSQL Data Stores</h1>
5050
</ol>
5151
<p>These persistent data storage representations are commonly used to augment,
5252
rather than completely replace, relational databases.</p>
53+
<h2>Key-value Pair</h2>
54+
<p>Key-value pair data stores are based
55+
on <a href="http://en.wikipedia.org/wiki/Hash_table">hash map</a> data structures.</p>
56+
<h3>Key-value pair data stores</h3>
57+
<ul>
58+
<li><a href="http://redis.io/">Redis</a> is an open source in-memory key-value pair data
59+
store. Redis is often called "the Swiss Army Knife of web application
60+
development." It can be used for caching, queuing, and storing session data
61+
for faster access than a traditional relational database, among many other
62+
use cases.</li>
63+
</ul>
64+
<h3>Key-value pair resources</h3>
65+
<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>
68+
</ul>
5369
<h2>Document-oriented</h2>
5470
<p>A document-oriented database provides a semi-structured representation for
5571
nested data. </p>
@@ -75,22 +91,6 @@ <h3>Document-oriented data store resources</h3>
7591
<li><a href="http://www.optinidus.com/blogs/guide-to-mongodb-for-startups/">MongoDB for startups</a>
7692
is a guide about using non-relational databases in green field environments.</li>
7793
</ul>
78-
<h2>Key-value Pair</h2>
79-
<p>Key-value pair data stores are based
80-
on <a href="http://en.wikipedia.org/wiki/Hash_table">hash map</a> data structures.</p>
81-
<h3>Key-value pair data stores</h3>
82-
<ul>
83-
<li><a href="http://redis.io/">Redis</a> is an open source in-memory key-value pair data
84-
store. Redis is often called "the Swiss Army Knife of web application
85-
development." It can be used for caching, queuing, and storing session data
86-
for faster access than a traditional relational database, among many other
87-
use cases.</li>
88-
</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>
9494
<h2>Column-family table</h2>
9595
<p>A the column-family table class of NoSQL data stores builds on the key-value
9696
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: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,24 @@ These persistent data storage representations are commonly used to augment,
3030
rather than completely replace, relational databases.
3131

3232

33+
## Key-value Pair
34+
Key-value pair data stores are based
35+
on [hash map](http://en.wikipedia.org/wiki/Hash_table) data structures.
36+
37+
38+
### Key-value pair data stores
39+
* [Redis](http://redis.io/) is an open source in-memory key-value pair data
40+
store. Redis is often called "the Swiss Army Knife of web application
41+
development." It can be used for caching, queuing, and storing session data
42+
for faster access than a traditional relational database, among many other
43+
use cases.
44+
45+
46+
### Key-value pair resources
47+
* "[How To Install and Use Redis](https://www.digitalocean.com/community/tutorials/how-to-install-and-use-redis)"
48+
is a guide for getting up with the extremely useful in-memory data store.
49+
50+
3351
## Document-oriented
3452
A document-oriented database provides a semi-structured representation for
3553
nested data.
@@ -52,25 +70,6 @@ nested data.
5270
is a guide about using non-relational databases in green field environments.
5371

5472

55-
## Key-value Pair
56-
Key-value pair data stores are based
57-
on [hash map](http://en.wikipedia.org/wiki/Hash_table) data structures.
58-
59-
60-
### Key-value pair data stores
61-
* [Redis](http://redis.io/) is an open source in-memory key-value pair data
62-
store. Redis is often called "the Swiss Army Knife of web application
63-
development." It can be used for caching, queuing, and storing session data
64-
for faster access than a traditional relational database, among many other
65-
use cases.
66-
67-
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-
7473
## Column-family table
7574
A the column-family table class of NoSQL data stores builds on the key-value
7675
pair type. Each key-value pair is considered a row in the store while the

0 commit comments

Comments
 (0)