[Github](https://github.com/lxzan/memorycache)
### 介绍
极简的内存 KV 存储,由哈希图和最小四叉堆实现, 没有GC优化。
### 特性
- 存储数据限制:受最大容量限制
- 过期时间:支持
- 缓存淘汰策略: 类似 LRU, Set 方法清理溢出的键;周期清理过期的键
- GC 优化: 无
- 持久化: 无
- 锁机制: 分片 + 互斥锁
### 压测(1M KV)
```
go test -benchmem -run=^$ -bench . github.com/lxzan/memorycache/benchmark
goos: linux
goarch: amd64
pkg: github.com/lxzan/memorycache/benchmark
cpu: AMD Ryzen 5 PRO 4650G with Radeon Graphics
BenchmarkMemoryCache_Set-12 11499579 101.7 ns/op 16 B/op 0 allocs/op
BenchmarkMemoryCache_Get-12 26326636 45.97 ns/op 0 B/op 0 allocs/op
BenchmarkRistretto_Set-12 12341542 275.4 ns/op 119 B/op 2 allocs/op
BenchmarkRistretto_Get-12 22825676 50.12 ns/op 16 B/op 1 allocs/op
PASS
ok github.com/lxzan/memorycache/benchmark 20.107s
```
有疑问加站长微信联系(非本文作者)