diff --git a/docs/en/docs/Administration/setting-up-the-database-server.md b/docs/en/docs/Administration/setting-up-the-database-server.md index 03a828f723b6c4f4aba74cb4885948160286a377..d5a458f2741d9bf3aa1f2a16b26cd26a0fc387a3 100644 --- a/docs/en/docs/Administration/setting-up-the-database-server.md +++ b/docs/en/docs/Administration/setting-up-the-database-server.md @@ -91,7 +91,7 @@

AutoVacuum (automatic cleanup)

-

In the PostgreSQL database, after a DELETE operation is performed on a table, old data is not immediately deleted. When new data is added, the system creates a data row instead of overwriting the old data. The old data is only marked as deleted and will be cleared only when no other concurrent transactions are reading the data. In this case, the data is cleared by the AutoVacuum process.

+

In the PostgreSQL database, after a DELETE operation is performed on a table, old data is not immediately deleted. When new data is added, the system creates a data row instead of overwriting the old data. Old data is only identified as the deleted status and is cleared only when it is read by other transactions that are not concurrent. In this case, the data is cleared by the AutoVacuum process.

PgStat (statistics collection)