Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/aksh-bansal-dev/simpledb
- Owner: Aksh-Bansal-dev
- Created: 2022-12-31T16:19:17.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-31T16:20:44.000Z (about 2 years ago)
- Last Synced: 2024-11-20T11:05:16.306Z (3 months ago)
- Language: Go
- Homepage:
- Size: 5.86 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.