Skip to content

Commit 1049466

Browse files
committed
adding new sources for no sql dbs
1 parent adece2e commit 1049466

File tree

4 files changed

+36
-5
lines changed

4 files changed

+36
-5
lines changed

all.html

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2112,8 +2112,20 @@ <h3>Document-oriented data stores</h3>
21122112
</ul>
21132113
<h3>Document-oriented data store resources</h3>
21142114
<ul>
2115-
<li><a href="http://www.optinidus.com/blogs/guide-to-mongodb-for-startups/">MongoDB for startups</a>
2116-
is a guide about using non-relational databases in green field environments.</li>
2115+
<li>
2116+
<p><a href="http://www.optinidus.com/blogs/guide-to-mongodb-for-startups/">MongoDB for startups</a>
2117+
is a guide about using non-relational databases in green field environments.</p>
2118+
</li>
2119+
<li>
2120+
<p>The creator and maintainers of PyMongo review four decisions they regret
2121+
from building the widely-used Python MongoDB driver.</p>
2122+
<ol>
2123+
<li><a href="http://emptysqua.re/blog/good-idea-at-the-time-pymongo-start-request/">start_request</a></li>
2124+
<li><a href="http://emptysqua.re/blog/it-seemed-like-a-good-idea-at-the-time-pymongo-use-greenlets/">use_greenlets</a></li>
2125+
<li><a href="http://emptysqua.re/blog/good-idea-at-the-time-pymongo-copy-database/">"copy_database"</a></li>
2126+
<li>The final post will cover MongoReplicaSetClient. </li>
2127+
</ol>
2128+
</li>
21172129
</ul>
21182130
<h2>Column-family table</h2>
21192131
<p>A the column-family table class of NoSQL data stores builds on the key-value

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-16T10:58:34Z</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-17T08:19:41Z</updated></feed>

no-sql-datastore.html

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,20 @@ <h3>Document-oriented data stores</h3>
101101
</ul>
102102
<h3>Document-oriented data store resources</h3>
103103
<ul>
104-
<li><a href="http://www.optinidus.com/blogs/guide-to-mongodb-for-startups/">MongoDB for startups</a>
105-
is a guide about using non-relational databases in green field environments.</li>
104+
<li>
105+
<p><a href="http://www.optinidus.com/blogs/guide-to-mongodb-for-startups/">MongoDB for startups</a>
106+
is a guide about using non-relational databases in green field environments.</p>
107+
</li>
108+
<li>
109+
<p>The creator and maintainers of PyMongo review four decisions they regret
110+
from building the widely-used Python MongoDB driver.</p>
111+
<ol>
112+
<li><a href="http://emptysqua.re/blog/good-idea-at-the-time-pymongo-start-request/">start_request</a></li>
113+
<li><a href="http://emptysqua.re/blog/it-seemed-like-a-good-idea-at-the-time-pymongo-use-greenlets/">use_greenlets</a></li>
114+
<li><a href="http://emptysqua.re/blog/good-idea-at-the-time-pymongo-copy-database/">"copy_database"</a></li>
115+
<li>The final post will cover MongoReplicaSetClient. </li>
116+
</ol>
117+
</li>
106118
</ul>
107119
<h2>Column-family table</h2>
108120
<p>A the column-family table class of NoSQL data stores builds on the key-value

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,13 @@ nested data.
7979
* [MongoDB for startups](http://www.optinidus.com/blogs/guide-to-mongodb-for-startups/)
8080
is a guide about using non-relational databases in green field environments.
8181

82+
* The creator and maintainers of PyMongo review four decisions they regret
83+
from building the widely-used Python MongoDB driver.
84+
1. [start\_request](http://emptysqua.re/blog/good-idea-at-the-time-pymongo-start-request/)
85+
1. [use\_greenlets](http://emptysqua.re/blog/it-seemed-like-a-good-idea-at-the-time-pymongo-use-greenlets/)
86+
1. ["copy\_database"](http://emptysqua.re/blog/good-idea-at-the-time-pymongo-copy-database/)
87+
1. The final post will cover MongoReplicaSetClient.
88+
8289

8390
## Column-family table
8491
A the column-family table class of NoSQL data stores builds on the key-value

0 commit comments

Comments
 (0)