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

https://github.com/leiless/cuckoohash-go

Expandable Cuckoo hash map/set implementation in Go (Docs WIP)
https://github.com/leiless/cuckoohash-go

cuckoo cuckoo-filter cuckoo-hashing cuckoo-hashing-algorithm cuckoo-search cuckoo-search-algorithm

Last synced: 7 months ago
JSON representation

Expandable Cuckoo hash map/set implementation in Go (Docs WIP)

Awesome Lists containing this project

README

          

# Cuckoo Hashing

[![](https://godoc.org/github.com/leiless/cuckoohash-go?status.svg)](https://pkg.go.dev/github.com/leiless/cuckoohash-go)
[![](https://goreportcard.com/badge/github.com/leiless/cuckoohash-go)](https://goreportcard.com/report/github.com/leiless/cuckoohash-go)
[![License](https://img.shields.io/badge/license-MIT-blue)](LICENSE)

`leiless/cuckoohash-go` package provides an expandable cuckoo hash map/set implementation in Go.

## Links

[_Cuckoo Filter: Better Than Bloom_ by Bin Fan, Dave Andersen and Michael Kaminsky](https://www.cs.cmu.edu/~dga/papers/cuckoo-conext2014.pdf)

[seiflotfy/cuckoofilter](https://github.com/seiflotfy/cuckoofilter)

[Probabilistic Filters By Example: Cuckoo Filter and Bloom Filters](https://bdupras.github.io/filter-tutorial/)

[Cuckoo Filter | Brilliant Math & Science Wiki](https://brilliant.org/wiki/cuckoo-filter/)

## License

Released under MIT License.