Beego/cache
Iskander Sharipov 67666dbe0f all: simplify boolean expressions
- !(a == b) => a != b
- !(a != b) => a == b

Signed-off-by: Iskander Sharipov <quasilyte@gmail.com>
2019-02-09 17:18:59 +03:00
..
memcache all: simplify boolean expressions 2019-02-09 17:18:59 +03:00
redis Support redis URI 2018-09-26 18:05:09 +02:00
ssdb Revert "hible" 2018-07-31 20:07:03 +08:00
README.md change github.com/garyburd/redigo to newest branch github.com/gomodule/redigo 2018-03-26 16:59:01 +08:00
cache.go Revert "hible" 2018-07-31 20:07:03 +08:00
cache_test.go Revert "hible" 2018-07-31 20:07:03 +08:00
conv.go mall fixes 2017-04-24 02:35:04 +03:00
conv_test.go add go simple support 2017-03-17 20:22:20 +02:00
file.go fix panic cause by the map 2019-01-25 19:08:39 +08:00
memory.go cache: remove excessive type assertions 2019-01-24 08:52:30 +03: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"}