Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/aksh-bansal-dev/simpledb

A simple key-value database (on-disk) written in Go.
https://github.com/aksh-bansal-dev/simpledb

Last synced: 25 days ago
JSON representation

A simple key-value database (on-disk) written in Go.

Awesome Lists containing this project

README

        

# SimpleDB

A simple key-value database (on-disk) written in Go.

It uses hashmap data structure as index.

## Benchmark results

```
[index] Inserted 10000 entries in 23.430793ms
[index] Fetched 10000 entries in 49.957959ms
[no index] Inserted 10000 entries in 27.739258ms
[no index] Fetched 10000 entries in 9.645895597s
```

> Run `go run benchmark/main.go -n ` to benchmark yourself.