1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-01 12:13:28 +00:00
Beego/cache
2016-01-07 09:37:50 +08:00
..
memcache improve cache modules. support mulit instances 2016-01-04 10:50:04 +08:00
redis improve cache modules. support mulit instances 2016-01-04 10:50:04 +08:00
cache_test.go Add GetMulti method for Cache interface 2015-06-07 21:33:01 +08:00
cache.go improve cache modules. support mulit instances 2016-01-04 10:50:04 +08:00
conv_test.go fix the conv test case 2015-09-18 12:11:48 +08:00
conv.go remove the dead code 2015-09-17 23:47:26 +08:00
file.go improve cache modules. support mulit instances 2016-01-04 10:50:04 +08:00
memory.go createdTime typo fixed 2016-01-07 09:37:50 +08:00
README.md Fix a wrong url (http 404). 2015-09-06 17:22:33 +09:00

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 := cache.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

Memcache adapter use the gomemcache client.

Configure like this:

{"conn":"127.0.0.1:11211"}

Redis adapter

Redis adapter use the redigo client.

Configure like this:

{"conn":":6039"}