Skip to content

Commit 24360d8

Browse files
committed
fixes after review
1 parent 01bf2dc commit 24360d8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

modules/ROOT/pages/appendix/graphdb-concepts/graphdb-vs-rdbms.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,20 @@ Unlike other database management systems, relationships are of equal importance
3232
This means you are not required to infer connections between entities using special properties such as foreign keys or out-of-band processing like map-reduce.
3333

3434
By assembling nodes and relationships into connected structures, graph databases enable building models that map closely to a problem domain.
35-
Whenever you run xref:cypher-intro/cypher-sql.adoc[the equivalent of a `JOIN` operation], the graph database uses this list, directly accessing the connected nodes and eliminating the need for expensive search-and-match computations.
35+
With Cypher's xref:cypher-intro/cypher-sql.adoc[equivalent of a `JOIN` operation], the graph database can directly access the connected nodes and eliminate the need for expensive search-and-match computations.
3636

3737
This ability to pre-materialize relationships into the database structure allows Neo4j to provide improved performance compared to others, especially for join-heavy queries.
3838

3939
ifndef::backend-pdf[]
4040
++++
4141
<div class="responsive-embed">
42-
<iframe width="640" height="360" src="https://www.youtube.com/embed/NO3C-CWykkY?start=294" frameborder="0" allowfullscreen></iframe>
42+
<iframe width="640" height="360" src="https://www.youtube.com/embed/o_6C27I5yeA" frameborder="0" allowfullscreen></iframe>
4343
</div>
4444
++++
4545
endif::[]
4646

4747
ifdef::backend-pdf[]
48-
link:https://www.youtube.com/watch?v=NO3C-CWykkY[Video: https://www.youtube.com/watch?v=NO3C-CWykkY]
48+
link:https://www.youtube.com/watch?v=o_6C27I5yeA[Video: https://www.youtube.com/watch?v=o_6C27I5yeA]
4949
endif::[]
5050

5151
[#rdbms-graph-model]
@@ -59,7 +59,7 @@ image::relational-as-graph.svg[Representation of tabular data in a relational da
5959

6060
In the relational example, on the left, you need to:
6161

62-
. Search the `Employees` table (potentially with millions of rows) to find the user Alice and her ID of 815.
62+
. Search the `Employees` table (potentially with thousands of rows) to find the user Alice and her ID of 815.
6363
. Search the `Dept_Members` table to locate all the rows that reference Alice's ID of 815.
6464
. Once the 3 relevant rows are found, you go for the `Departments` table to search for the actual values of the department IDs (111, 119, 181).
6565
. Only now you know that Alice is part of the 4Future, P0815, and A42 departments.

0 commit comments

Comments
 (0)