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

https://github.com/wintercore/rust-database


https://github.com/wintercore/rust-database

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Rust Databases

This repository is intended to practice implementing different kinds of databases from scratch in Rust.

## Database Types
- [x] Basic key-value file database.
- [ ] In-memory hash based file database.
- [ ] SSTable based database.
- [ ] B-Tree based database.