go-cacheGo 語言的緩存框架
go-cache 是 Go 語言實(shí)現(xiàn)的一個(gè)內(nèi)存中的緩存框架,實(shí)現(xiàn) Key-Value 的序列存儲(chǔ)。
示例代碼:
import "github.com/pmylund/go-cache"
// Create a cache with a default expiration time of 5 minutes, and which
// purges expired items every 30 seconds
c := cache.New(5*time.Minute, 30*time.Second)
// Set the value of the key "foo" to "bar", with the default expiration time
c.Set("foo", "bar", 0)
// Set the value of the key "baz" to "yes", with no expiration time
// (the item won't be removed until it is re-set, or removed using
// c.Delete("baz")
c.Set("baz", "yes", -1)
// Get the string associated with the key "foo" from the cache
foo, found := c.Get("foo")
if found {
fmt.Println(foo)
}評(píng)論
圖片
表情
