https://github.com/varugasu/go-bitcask
https://github.com/varugasu/go-bitcask
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/varugasu/go-bitcask
- Owner: varugasu
- License: mit
- Created: 2024-04-05T17:42:11.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-08T18:57:04.000Z (about 1 year ago)
- Last Synced: 2024-04-09T02:52:26.052Z (about 1 year ago)
- Language: Go
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Go Bitcask
Bitcask implementation based on https://riak.com/assets/bitcask-intro.pdf
- A key/value store
- a Bitcask instance is a directory
- One file is active in that directory for writing
- When the file meets a size threshold, it will be closed and a new active file will be created
- Files are immutable after closed (on purpose or server exits)
# Active File## Header
![]()