harbor/src/vendor/github.com/beego/beego/v2/client/cache/README.md

55 lines
1.0 KiB
Markdown
Raw Normal View History

2016-02-01 12:59:10 +01:00
## cache
cache is a Go cache manager. It can use many cache adapters. The repo is inspired by `database/sql` .
2016-02-01 12:59:10 +01:00
## How to install?
go get github.com/beego/beego/v2/client/cache
2016-02-01 12:59:10 +01:00
## 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/beego/beego/v2/client/cache"
2016-02-01 12:59:10 +01:00
)
Then init a Cache (example with memory adapter)
bm, err := cache.NewCache("memory", `{"interval":60}`)
Use it like this:
2016-02-01 12:59:10 +01:00
bm.Put("astaxie", 1, 10 * time.Second)
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
Memcache adapter use the [gomemcache](http://github.com/bradfitz/gomemcache) client.
Configure like this:
{"conn":"127.0.0.1:11211"}
## Redis adapter
Redis adapter use the [redigo](http://github.com/gomodule/redigo) client.
2016-02-01 12:59:10 +01:00
Configure like this:
{"conn":":6039"}