Skip to content

Commit b280e84

Browse files
committed
a few new nosql database resources
1 parent 9bbd874 commit b280e84

File tree

6 files changed

+32
-3
lines changed

6 files changed

+32
-3
lines changed

all.html

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1946,7 +1946,13 @@ <h2>NoSQL third-party services</h2>
19461946
<h2>NoSQL data store resources</h2>
19471947
<ul>
19481948
<li>
1949-
<p><a href="http://natishalom.typepad.com/nati_shaloms_blog/2010/10/nocap.html">CAP Theorem overview</a></p>
1949+
<p><a href="http://natishalom.typepad.com/nati_shaloms_blog/2010/10/nocap.html">CAP Theorem overview</a>
1950+
presents the basic constraints all databases must trade off in operation.</p>
1951+
</li>
1952+
<li>
1953+
<p>This post on <a href="http://jeffknupp.com/blog/2014/09/01/what-is-a-nosql-database-learn-by-writing-one-in-python/">What is a NoSQL database? Learn By Writing One in Python</a>
1954+
is a detailed article that breaks the mystique behind what some forms
1955+
of NoSQL databases are doing under the covers.</p>
19501956
</li>
19511957
<li>
19521958
<p><a href="http://www.nosqlweekly.com/">NoSQL Weekly</a> is a free curated email
@@ -3705,6 +3711,10 @@ <h1>Change Log</h1>
37053711
the
37063712
<a href="https://github.com/makaimc/fullstackpython.github.com/commits/gh-pages">source repository's commit log</a> on GitHub.</p>
37073713
<h2>2014</h2>
3714+
<h3>September</h3>
3715+
<ul>
3716+
<li>A few new resources for NoSQL data stores.</li>
3717+
</ul>
37083718
<h3>August</h3>
37093719
<ul>
37103720
<li>New interesting link for web framework code complexity visualizations.</li>

change-log.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ <h1>Change Log</h1>
4444
the
4545
<a href="https://github.com/makaimc/fullstackpython.github.com/commits/gh-pages">source repository's commit log</a> on GitHub.</p>
4646
<h2>2014</h2>
47+
<h3>September</h3>
48+
<ul>
49+
<li>A few new resources for NoSQL data stores.</li>
50+
</ul>
4751
<h3>August</h3>
4852
<ul>
4953
<li>New interesting link for web framework code complexity visualizations.</li>

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-03T09:18:40Z</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-05T10:06:56Z</updated></feed>

no-sql-datastore.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,13 @@ <h2>NoSQL third-party services</h2>
142142
<h2>NoSQL data store resources</h2>
143143
<ul>
144144
<li>
145-
<p><a href="http://natishalom.typepad.com/nati_shaloms_blog/2010/10/nocap.html">CAP Theorem overview</a></p>
145+
<p><a href="http://natishalom.typepad.com/nati_shaloms_blog/2010/10/nocap.html">CAP Theorem overview</a>
146+
presents the basic constraints all databases must trade off in operation.</p>
147+
</li>
148+
<li>
149+
<p>This post on <a href="http://jeffknupp.com/blog/2014/09/01/what-is-a-nosql-database-learn-by-writing-one-in-python/">What is a NoSQL database? Learn By Writing One in Python</a>
150+
is a detailed article that breaks the mystique behind what some forms
151+
of NoSQL databases are doing under the covers.</p>
146152
</li>
147153
<li>
148154
<p><a href="http://www.nosqlweekly.com/">NoSQL Weekly</a> is a free curated email

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,11 @@ representing a person could have a property of "female" or "male".
120120

121121
## NoSQL data store resources
122122
* [CAP Theorem overview](http://natishalom.typepad.com/nati_shaloms_blog/2010/10/nocap.html)
123+
presents the basic constraints all databases must trade off in operation.
124+
125+
* This post on [What is a NoSQL database? Learn By Writing One in Python](http://jeffknupp.com/blog/2014/09/01/what-is-a-nosql-database-learn-by-writing-one-in-python/)
126+
is a detailed article that breaks the mystique behind what some forms
127+
of NoSQL databases are doing under the covers.
123128

124129
* [NoSQL Weekly](http://www.nosqlweekly.com/) is a free curated email
125130
newsletter that aggregates articles, tutorials, and videos about
@@ -130,6 +135,7 @@ representing a person could have a property of "female" or "male".
130135
datastores with attributes and the best use cases for each one.
131136

132137

138+
133139
## NoSQL data stores learning checklist
134140
<i class="fa fa-check-square-o"></i>
135141
Understand why NoSQL data stores are better for some use cases than relational

source/content/pages/11-misc/1103-change-log.markdown

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ the
2323
[source repository's commit log](https://github.com/makaimc/fullstackpython.github.com/commits/gh-pages) on GitHub.
2424

2525
## 2014
26+
### September
27+
* A few new resources for NoSQL data stores.
28+
2629
### August
2730
* New interesting link for web framework code complexity visualizations.
2831
* Merged pull request that fixed some issues on WSGI page.

0 commit comments

Comments
 (0)