mirror of
https://github.com/astaxie/beego.git
synced 2025-06-20 14:10:19 +00:00
cache
README.md
cache.go
cache_test.go
memcache.go
memory.go
redis.go
docs
example
httplib
orm
session
validation
.gitignore
README.md
beego.go
cache.go
config.go
context.go
controller.go
errors.go
flash.go
log.go
pprof.go
reload.go
router.go
safemap.go
safemap_test.go
template.go
template_test.go
utils.go
utils_test.go
cache
cache is a Go cache manager. It can use many cache adapters. The repo is inspired by database/sql
.
How to install?
go get github.com/astaxie/beego/cache
What adapters are supported?
As of now this cache support memory, Memcache and Redis.
How to use it?
First you must import it
import (
"github.com/astaxie/beego/cache"
)
Then init a Cache (example with memory adapter)
bm, err := NewCache("memory", `{"interval":60}`)
Use it like this:
bm.Put("astaxie", 1, 10)
bm.Get("astaxie")
bm.IsExist("astaxie")
bm.Delete("astaxie")
Memory adapter
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
memory adapter use the vitess's Memcache client.
Configure like this:
{"conn":"127.0.0.1:11211"}
Redis adapter
Redis adapter use the redigo client.
Configure like this:
{"conn":":6039"}