fatedier 0f1005ff61 using glide | 7 år sedan | |
---|---|---|
.. | ||
memcache | 7 år sedan | |
redis | 7 år sedan | |
ssdb | 7 år sedan | |
README.md | 7 år sedan | |
cache.go | 7 år sedan | |
cache_test.go | 7 år sedan | |
conv.go | 7 år sedan | |
conv_test.go | 7 år sedan | |
file.go | 7 år sedan | |
memory.go | 7 år sedan |
cache is a Go cache manager. It can use many cache adapters. The repo is inspired by database/sql
.
go get github.com/astaxie/beego/cache
As of now this cache support memory, Memcache and Redis.
First you must import it
import (
"github.com/astaxie/beego/cache"
)
Then init a Cache (example with memory adapter)
bm, err := cache.NewCache("memory", `{"interval":60}`)
Use it like this:
bm.Put("astaxie", 1, 10 * time.Second)
bm.Get("astaxie")
bm.IsExist("astaxie")
bm.Delete("astaxie")
Configure memory adapter like this:
{"interval":60}
interval means the gc time. The cache will check at each time interval, whether item has expired.
Memcache adapter use the gomemcache client.
Configure like this:
{"conn":"127.0.0.1:11211"}
Redis adapter use the redigo client.
Configure like this:
{"conn":":6039"}