# README
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/goasana/asana/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/goasana/asana/cache"
)
Then init a Cache (example with memory adapter)
bm, err := cache.NewCache(cache.MemCachedProvider, `{"interval":60}`)
Providers:
- RedisProvider
- MemCachedProvider
- SSDBProvider
- GCacheProvider
- MemoryProvider
- FileProvider
Use it like this:
bm.Put("asana", 1, 10 * time.Second)
bm.Get("asana")
bm.IsExist("asana")
bm.Delete("asana")
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.
GCache adapter
GCache adapter use the gcache client.
Configure like this:
{"size":60,"type":"lru"}
Memcache adapter
Memcache adapter use the gomemcache client.
Configure like this:
{"conn":"127.0.0.1:11211"}
Redis adapter
Redis adapter use the goredis client.
Configure like this:
{"conn":":6039"}