https://github.com/pluveto/buggydb
https://github.com/pluveto/buggydb
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pluveto/buggydb
- Owner: pluveto
- Created: 2021-05-21T07:56:09.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-05-21T08:00:07.000Z (about 4 years ago)
- Last Synced: 2025-01-03T20:24:59.555Z (6 months ago)
- Language: C++
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# buggydb
buggydb is a buggy file based database system. Design by ZhangZijing.
Each table a binary file.
## Table
```
----------------------------
typedef struct table_meta
{
char name[32];
size_t size;
} table_meta;record: {
string key
size_t value_size
* value
next
}----------------------------
```