Google News
logo
PostgreSQL - Interview Questions
What is write ahead logging?
Postgres’ write ahead logging increases the reliability (in a way resiliency) of the db by logging changes before any changes or updates to the database. This provides log of database in case of a db crash and this also helps to start the work from the point it was discontinued. This it is useful for crash recovery.
Advertisement