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

https://github.com/spy16/kiwi

Kiwi is a multi-backend key-value store written in Go.
https://github.com/spy16/kiwi

b-plus-tree database go golang key-value-store

Last synced: 9 months ago
JSON representation

Kiwi is a multi-backend key-value store written in Go.

Awesome Lists containing this project

README

          

# kiwi

Kiwi is a multi-backend key-value store written in Go.

## Features

* Supports multiple indexing schemes: [B+ Tree](index/bptree/README.md)

## References

1. https://hackthology.com/linear-hashing.html
2. http://research.cs.vt.edu/AVresearch/hashing/
3. https://cstack.github.io/db_tutorial/
4. https://github.com/boltdb/bolt
5. https://artem.krylysov.com/blog/2018/03/24/pogreb-key-value-store/
6. https://hackthology.com/an-in-memory-go-implementation-of-linear-hashing.html