3,142 views

1 Answer

Best answer
3 votes
3 votes

B is the ans Check pointing 

Checkpointing is a technique to add fault tolerance into computing systems. It basically consists of saving a snapshot of the application's state, so that it can restart from that point in case of failure.

In computer science, write-ahead logging (WAL) is a family of techniques for providing atomicity and durability (two of the ACID properties) in database systems. In a system using WAL, all modifications are written to a log before they are applied. Usually both redo and undo information is stored in the log.

In computer science, particularly the field of databases, the Thomas write rule is a rule in timestamp-based concurrency control. It can be summarized as ignore outdated writes.

Log buffer is a small contiguous memory structure, to host in memory transaction logs per database. .

selected by
Answer:

Related questions

2 votes
2 votes
2 answers
2
6 votes
6 votes
2 answers
3
4 votes
4 votes
2 answers
4