|
|
|
|
|
by bob1029
1220 days ago
|
|
If mass storage were free, then everything would be append-only by default. There would be no excuse to not do this. A major benefit of append-only is that your writes are always ideal for whatever storage medium. Especially magnetic or tape. Combine append-only with batching of transactions (i.e. across 1-10 milliseconds at a time), and you can write multiple txns per disk I/O operation (assuming txn size < storage block size). |
|