Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 471 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 471 Bytes

Write-Ahead Log (WAL)

WAL "write-ahead log" implementation in Python

Writing the logs in a binary file with contents of dictionary object of the running operations.

Running unittests

❯ python3.10 -m unittest
.....
----------------------------------------------------------------------
Ran 5 tests in 0.004s

OK

❯ python3.10 test_wal.py
.....
----------------------------------------------------------------------
Ran 5 tests in 0.004s

OK