Add Go-Shelve (#5338)

This commit is contained in:
Lucas Merquior 2024-09-23 15:21:46 -03:00 committed by GitHub
parent c8e234bc79
commit f2912d5f7e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -615,6 +615,7 @@ additional ordered map implementations.
- [cmap](https://github.com/lrita/cmap) - a thread-safe concurrent map for go, support using `interface{}` as key and auto scale up shards.
- [dict](https://github.com/srfrog/dict) - Python-like dictionaries (dict) for Go.
- [go-shelve](https://github.com/lucmq/go-shelve) - A persistent, map-like object for the Go programming language. Supports multiple embedded key-value stores.
- [goradd/maps](https://github.com/goradd/maps) - Go 1.18+ generic map interface for maps; safe maps; ordered maps; ordered, safe maps; etc.
### Miscellaneous Data Structures and Algorithms