https://github.com/adarsh-kmt/lsmtree
A LSM tree, implemented in Go.
https://github.com/adarsh-kmt/lsmtree
data-structures data-structures-and-algorithms database lsm-tree
Last synced: 3 months ago
JSON representation
A LSM tree, implemented in Go.
- Host: GitHub
- URL: https://github.com/adarsh-kmt/lsmtree
- Owner: Adarsh-Kmt
- Created: 2024-11-04T13:15:46.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-27T08:35:46.000Z (over 1 year ago)
- Last Synced: 2025-03-11T23:39:32.151Z (about 1 year ago)
- Topics: data-structures, data-structures-and-algorithms, database, lsm-tree
- Language: Go
- Homepage:
- Size: 61.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LSMTree
A LSM tree, implemented in Go.
## Format of SSTable
| Block Name |
|:---------------:|
| Header Block |
| Data Block 1 |
| Data Block 2 |
| . |
| . |
| Data Block N-1 |
| Data Block N |
| Index Block |
| Meta Data Block |