Skip to content

Commit 55530cc

Browse files
committed
new nosql resources
1 parent f156b4e commit 55530cc

File tree

6 files changed

+22
-1
lines changed

6 files changed

+22
-1
lines changed

all.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2861,6 +2861,11 @@ <h3>Key-value pair resources</h3>
28612861
is a higher-level Python wrapper for Redis with some caching, querying
28622862
and data structure components build into the library.</p>
28632863
</li>
2864+
<li>
2865+
<p><a href="http://jamesls.com/writing-redis-in-python-with-asyncio-part-1.html">Writing Redis in Python with Asyncio</a>
2866+
shows a detailed example for how to use the new Asyncio standard library in
2867+
Python 3.4+ for working with Redis.</p>
2868+
</li>
28642869
</ul>
28652870
<h2>Document-oriented</h2>
28662871
<p>A document-oriented database provides a semi-structured representation for
@@ -5653,6 +5658,8 @@ <h1>Change Log</h1>
56535658
<h2>2015</h2>
56545659
<h3>April</h3>
56555660
<ul>
5661+
<li>Added more <a href="/no-sql-datastore.html">NoSQL resources</a>, especially ones involving
5662+
Redis.</li>
56565663
<li>New <a href="/pyramid.html">Pyramid</a> resource where the primary author is
56575664
interviewed about the web framework.</li>
56585665
<li>New <a href="/vim.html">Vim</a> resources.</li>

change-log.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ <h1>Change Log</h1>
4242
<h2>2015</h2>
4343
<h3>April</h3>
4444
<ul>
45+
<li>Added more <a href="/no-sql-datastore.html">NoSQL resources</a>, especially ones involving
46+
Redis.</li>
4547
<li>New <a href="/pyramid.html">Pyramid</a> resource where the primary author is
4648
interviewed about the web framework.</li>
4749
<li>New <a href="/vim.html">Vim</a> resources.</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>2015-04-28T10:27:35Z</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-04-29T09:58:24Z</updated></feed>

no-sql-datastore.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,11 @@ <h3>Key-value pair resources</h3>
7777
is a higher-level Python wrapper for Redis with some caching, querying
7878
and data structure components build into the library.</p>
7979
</li>
80+
<li>
81+
<p><a href="http://jamesls.com/writing-redis-in-python-with-asyncio-part-1.html">Writing Redis in Python with Asyncio</a>
82+
shows a detailed example for how to use the new Asyncio standard library in
83+
Python 3.4+ for working with Redis.</p>
84+
</li>
8085
</ul>
8186
<h2>Document-oriented</h2>
8287
<p>A document-oriented database provides a semi-structured representation for

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ on [hash map](http://en.wikipedia.org/wiki/Hash_table) data structures.
4848
is a higher-level Python wrapper for Redis with some caching, querying
4949
and data structure components build into the library.
5050

51+
* [Writing Redis in Python with Asyncio](http://jamesls.com/writing-redis-in-python-with-asyncio-part-1.html)
52+
shows a detailed example for how to use the new Asyncio standard library in
53+
Python 3.4+ for working with Redis.
54+
55+
5156

5257
## Document-oriented
5358
A document-oriented database provides a semi-structured representation for

source/content/pages/13-meta/02-change-log.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ the
1414

1515
## 2015
1616
### April
17+
* Added more [NoSQL resources](/no-sql-datastore.html), especially ones involving
18+
Redis.
1719
* New [Pyramid](/pyramid.html) resource where the primary author is
1820
interviewed about the web framework.
1921
* New [Vim](/vim.html) resources.

0 commit comments

Comments
 (0)