1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-01 23:13:29 +00:00
Beego/cache
2014-04-03 23:41:48 +08:00
..
memcache beego: move dependency module to sub package 2014-04-03 23:41:48 +08:00
redis beego: move dependency module to sub package 2014-04-03 23:41:48 +08:00
cache_test.go fix #430 2014-01-01 20:50:06 +08:00
cache.go add comments in cache package files. 2013-12-22 13:35:02 +08:00
conv_test.go add convertor for cache 2013-12-13 10:00:24 +08:00
conv.go add comments in cache package files. 2013-12-22 13:35:02 +08:00
file.go register interface to gob automatically 2014-03-12 15:56:04 +08:00
memory.go add timeout description for file and memory cache. 2013-12-24 21:56:48 +08:00
README.md Update README.md 2014-01-17 00:17:43 +08: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 := 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 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"}