groupcache 分布式缓存和缓存填充库,在许多情况下都可以用来替代内存缓存节点池,不支持 expire。
go-cache 内存中键值存储/缓存库(类似于Memcached),适用于单机应用程序。
freecache 支持 expire,类似 cache2go。
ristretto 未做好面向生产环境
golang-lru 固定尺寸大小的 线程安全的 LRU 缓存库,基于 Groupcache,比较简陋。
cache2go 支持 expire,并发安全的缓存库,api 简单。
gcache 支持 expire,LFU, LRU and ARC 缓存库,Goroutine 安全。
fastcache 不支持 expire,据称比 freecache 更快。
https://github.com/golang/groupcache
https://github.com/patrickmn/go-cache
https://github.com/coocood/freecache
https://github.com/dgraph-io/ristretto
https://github.com/hashicorp/golang-lru
https://github.com/muesli/cache2go
https://github.com/bluele/gcache
https://github.com/VictoriaMetrics/fastcache
https://my.oschina.net/u/4360199/blog/4304541