Beego/cache
Sergey Lanzman 37c1ffc57a add go simple support 2017-03-17 20:22:20 +02:00
..
memcache add go simple support 2017-03-17 20:22:20 +02:00
redis add go simple support 2017-03-17 20:22:20 +02:00
ssdb add go simple support 2017-03-17 20:22:20 +02:00
README.md for issue #1530, accept @JessonChan's suggestion 2016-01-08 20:16:58 +08:00
cache.go golint all the files 2016-01-18 00:18:21 +08:00
cache_test.go fix bee fix 2016-03-25 13:25:29 +08:00
conv.go remove the dead code 2015-09-17 23:47:26 +08:00
conv_test.go add go simple support 2017-03-17 20:22:20 +02:00
file.go 1.simplify reading and writing file code 2017-02-10 09:35:23 +08:00
memory.go gofmt -s 2016-01-17 23:57:07 +08:00

README.md

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 * 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 client.

Configure like this:

{"conn":"127.0.0.1:11211"}

Redis adapter

Redis adapter use the redigo client.

Configure like this:

{"conn":":6039"}