Recent posts

Read Assembly

3 minute read

Some notes to facilitate the reading of assembly code in IA32.

Context Switch in Xv6

2 minute read

Last weekend I wanted to refresh my memory about assembly, I took the context switching code in Xv6 as an example. It was quite interesting to walk through t...

The Google File System I

2 minute read

After finishing reading Professor Arpaci-Dusseau’s book Operating Systems - Three Easy Pieces recently, I decide to read this paper again.

Replication

2 minute read

Advantages of replication include

Transaction

less than 1 minute read

A transaction is a way for an application to group several reads and writes together into a logical unit. All the reads and writes in a transaction are execu...