Add Go-Shelve

Add Go-Shelve: A persistent, map-like object for the Go programming language with support for multiple key-value stores as backend.
This commit is contained in:
Lucas Merquior 2024-06-11 15:31:07 -03:00 committed by GitHub
parent a08ad217cc
commit ee3b165286
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -107,7 +107,7 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a
- [Error Handling](#error-handling)
- [File Handling](#file-handling)
- [Financial](#financial)
- [Forms](#forms)
- [Fs](#fs)
- [Functional](#functional)
- [Game Development](#game-development)
- [Generators](#generators)
@ -586,6 +586,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