.. | ||
config.go | ||
hash.go | ||
icache.go | ||
memory_test.go | ||
memory.go | ||
option.go | ||
readme.adoc | ||
redis.go |
说明
目录
1. 快速使用
c := cache.NewMemCache()
c.Set("a", 1)
c.Set("b", 1, cache.WithEx(1*time.Second))
time.sleep(1*time.Second)
c.Get("a") // 1, true
c.Get("b") // nil, false