Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pluveto/buggydb
https://github.com/pluveto/buggydb
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pluveto/buggydb
- Owner: pluveto
- Created: 2021-05-21T07:56:09.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-21T08:00:07.000Z (over 3 years ago)
- Last Synced: 2024-10-07T05:21:04.164Z (about 1 month 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
}----------------------------
```