Skip to content

Commit 0b90cbf

Browse files
committed
adding section on graph datastores
1 parent 41f8917 commit 0b90cbf

File tree

4 files changed

+38
-1
lines changed

4 files changed

+38
-1
lines changed

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>2013-11-26T10:36:47Z</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>2013-11-27T07:56:42Z</updated></feed>

index.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,17 @@ <h2>Relational Databases</h2>
313313
complicated databases such as Oracle, PostgreSQL, and MySQL are more tightly
314314
coupled with the operating system after installation.</p>
315315
</div>
316+
<div class="section" id="graph-databases">
317+
<h2>Graph Databases</h2>
318+
<p>A graph database represent and store data in three aspects: nodes, edges,
319+
and properties.</p>
320+
<p>A <em>node</em> is an entity, such as a person or business.</p>
321+
<p>An <em>edge</em> is the relationship between two entities. For example, an
322+
edge could represent that a node for a person entity is an employee of a
323+
business entity.</p>
324+
<p>A <em>property</em> represents information about nodes. For example, an entity
325+
representing a person could have a property of &quot;female&quot; or &quot;male&quot;.</p>
326+
</div>
316327
<div class="section" id="database-resources">
317328
<h2>Database resources</h2>
318329
<p><a class="reference external" href="http://db-engines.com/en/ranking">DB-Engines</a> ranks the most popular

pages/database.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,17 @@ <h2>Relational Databases</h2>
6363
complicated databases such as Oracle, PostgreSQL, and MySQL are more tightly
6464
coupled with the operating system after installation.</p>
6565
</div>
66+
<div class="section" id="graph-databases">
67+
<h2>Graph Databases</h2>
68+
<p>A graph database represent and store data in three aspects: nodes, edges,
69+
and properties.</p>
70+
<p>A <em>node</em> is an entity, such as a person or business.</p>
71+
<p>An <em>edge</em> is the relationship between two entities. For example, an
72+
edge could represent that a node for a person entity is an employee of a
73+
business entity.</p>
74+
<p>A <em>property</em> represents information about nodes. For example, an entity
75+
representing a person could have a property of &quot;female&quot; or &quot;male&quot;.</p>
76+
</div>
6677
<div class="section" id="database-resources">
6778
<h2>Database resources</h2>
6879
<p><a class="reference external" href="http://db-engines.com/en/ranking">DB-Engines</a> ranks the most popular

source/content/pages/database.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,21 @@ complicated databases such as Oracle, PostgreSQL, and MySQL are more tightly
2323
coupled with the operating system after installation.
2424

2525

26+
Graph Databases
27+
---------------
28+
A graph database represent and store data in three aspects: nodes, edges,
29+
and properties.
30+
31+
A *node* is an entity, such as a person or business.
32+
33+
An *edge* is the relationship between two entities. For example, an
34+
edge could represent that a node for a person entity is an employee of a
35+
business entity.
36+
37+
A *property* represents information about nodes. For example, an entity
38+
representing a person could have a property of "female" or "male".
39+
40+
2641
Database resources
2742
------------------
2843
`DB-Engines <http://db-engines.com/en/ranking>`_ ranks the most popular

0 commit comments

Comments
 (0)