1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-01 21:23:27 +00:00
Beego/cache
2015-02-16 21:56:32 +08:00
..
memcache update the documents & comments 2014-08-18 16:41:43 +08:00
redis redis provider for session and cache support select db 2015-02-16 21:56:32 +08:00
cache_test.go fix the cache test 2014-12-19 14:40:16 +08:00
cache.go fixed uninitialized return error if StartAndGC fails 2014-09-03 22:43:06 +08:00
conv_test.go update the documents & comments 2014-08-18 16:41:43 +08:00
conv.go update the documents & comments 2014-08-18 16:41:43 +08:00
file.go Allow absolute path for filesystem cache 2014-12-07 10:00:35 -07:00
memory.go update the documents & comments 2014-08-18 16:41:43 +08:00
README.md fix the nil judge 2014-08-08 12:02:44 +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 := 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 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"}