Skip to content

Commit 44e9641

Browse files
Tie up the Database internals section with the v4.4
1 parent 6edaff1 commit 44e9641

File tree

4 files changed

+18
-1
lines changed

4 files changed

+18
-1
lines changed

modules/ROOT/pages/database-internals/checkpointing.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
[[checkpointing-log-pruning]]
2+
:page-aliases: configuration/transaction-logs.adoc
3+
24
= Checkpointing and log pruning
35

46
Checkpointing is the process of flushing all pending updates from volatile memory to non-volatile data storage.

modules/ROOT/pages/database-internals/concurrent-data-access.adoc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33

44
== Isolation levels
55

6+
[NOTE]
7+
====
8+
For information on Neo4j 4.4, see link:https://neo4j.com/docs/java-reference/4.4/transaction-management/#transactions-isolation[Java Reference -> Isolation levels].
9+
====
10+
611
Neo4j supports the following isolation levels:
712

813
_read-committed isolation level_:: label:default[] A transaction that reads a node/relationship does not block another transaction from writing to that node/relationship before the first transaction finishes.

modules/ROOT/pages/database-internals/index.adoc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,9 @@ The following sections describe the transactional behavior in detail and how to
2424
* xref:database-internals/concurrent-data-access.adoc[]
2525
* xref:database-internals/transaction-logs.adoc[]
2626
* xref:database-internals/checkpointing.adoc[]
27-
* xref:database-internals/store-formats.adoc[]
27+
* xref:database-internals/store-formats.adoc[]
28+
29+
[NOTE]
30+
====
31+
For information on Neo4j 4.4, see link:https://neo4j.com/docs/java-reference/4.4/transaction-management/[Java Reference -> Transaction management].
32+
====

modules/ROOT/pages/database-internals/transaction-management.adoc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33

44
== Transactions
55

6+
[NOTE]
7+
====
8+
For information on Neo4j 4.4, refer to link:https://neo4j.com/docs/java-reference/4.4/transaction-management/[Java Reference -> Transaction management].
9+
====
10+
611
Database operations that access the graph, indexes, or schema are performed in a transaction to ensure the ACID properties.
712
Transactions are single-threaded, confined, and independent.
813
Multiple transactions can be started in a single thread and they are independent of each other.

0 commit comments

Comments
 (0)