Skip to content

Commit 5c5759a

Browse files
committed
docs: improve database page
1 parent 92fb407 commit 5c5759a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content/docs/6.advanced/4.database.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ Content management in Content v3 involves three key steps, which are designed to
1616

1717
## Generating Database Dump
1818

19-
For each collection in your project, the module reads the content from the defined source and parses it into an Abstract Syntax Tree (AST). It also creates a specific table for each collection based on its schema. The parsed content is then inserted into the corresponding table, ensuring that the data structure aligns with the defined schema for optimal querying.
19+
For each collection in your project, the module reads the content from the defined source and parses it into an Abstract Syntax Tree (AST). It creates a specific table for each collection based on its schema. The parsed content is then inserted into the corresponding table, ensuring that the data structure aligns with the defined schema for optimal querying. Everything is then saved in a dump file.
2020

2121
## Restoring Dump on Cold Start
2222

23-
During runtime, when the application executes the first query to retrieve content, the module reads the generated dump from the previous step and restores it into the target database. This process is efficient and minimizes the time taken to access content.
23+
During runtime, when the application executes the first query to retrieve content, the module reads the generated dump from the previous step and restores it into the target database. This process is fast and optimized for each deployment mode and platform.
2424

2525
The module employs a special integrity check mechanism to ensure that the database is updated with the latest content. This same integrity check also prevents duplicate imports, maintaining the integrity and accuracy of the data stored.
2626

0 commit comments

Comments
 (0)