Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pluveto/buggydb


https://github.com/pluveto/buggydb

Last synced: 4 days ago
JSON representation

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
}

----------------------------
```