Skip to content

Commit 80b3372

Browse files
committed
working on nosql page. it needs a lot of work
1 parent d1366e4 commit 80b3372

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

all.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2030,7 +2030,10 @@ <h1>NoSQL Data Stores</h1>
20302030
<li>Graph</li>
20312031
</ol>
20322032
<p>These persistent data storage representations are commonly used to augment,
2033-
rather than completely replace, relational databases.</p>
2033+
rather than completely replace, relational databases. The underlying
2034+
persistence type used by the NoSQL database often gives it different
2035+
performance characteristics than a relational database, with better results
2036+
on some types of read/writes and worse performance on others.</p>
20342037
<h2>Key-value Pair</h2>
20352038
<p>Key-value pair data stores are based
20362039
on <a href="http://en.wikipedia.org/wiki/Hash_table">hash map</a> data structures.</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>2014-12-07T15:57:28Z</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-12-08T12:07:42Z</updated></feed>

no-sql-datastore.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@ <h1>NoSQL Data Stores</h1>
4949
<li>Graph</li>
5050
</ol>
5151
<p>These persistent data storage representations are commonly used to augment,
52-
rather than completely replace, relational databases.</p>
52+
rather than completely replace, relational databases. The underlying
53+
persistence type used by the NoSQL database often gives it different
54+
performance characteristics than a relational database, with better results
55+
on some types of read/writes and worse performance on others.</p>
5356
<h2>Key-value Pair</h2>
5457
<p>Key-value pair data stores are based
5558
on <a href="http://en.wikipedia.org/wiki/Hash_table">hash map</a> data structures.</p>

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ storage representations.
2727
4. Graph
2828

2929
These persistent data storage representations are commonly used to augment,
30-
rather than completely replace, relational databases.
30+
rather than completely replace, relational databases. The underlying
31+
persistence type used by the NoSQL database often gives it different
32+
performance characteristics than a relational database, with better results
33+
on some types of read/writes and worse performance on others.
3134

3235

3336
## Key-value Pair

0 commit comments

Comments
 (0)