go: 實現簡單的內存級別緩存
- 2020 年 3 月 6 日
- 筆記
使用go自帶的sync.Map和time.AfterFunc可以很簡單的實現一個基於內存的緩存map。key不多的時候,效果還是很不錯的。
package cache import ( "sync" "sync/atomic" "time" ) var globalMap sync.Map var len int64 func Set(key string, data interface{}, timeout int) { globalMap.Store(key, data) atomic.AddInt64(&len, 1) time.AfterFunc(time.Second*time.Duration(timeout), func() { atomic.AddInt64(&len, -1) globalMap.Delete(key) }) } func Get(key string) (interface{}, bool) { return globalMap.Load(key) } func Len() int { return int(len) }