package
0.0.0-20180601060148-d032931de3c3
Repository: https://github.com/cloudwise-opensource/gocrab.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# 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/CloudWise-OpenSource/GoCrab/Core/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/CloudWise-OpenSource/GoCrab/Core/cache"
)

Then init a Cache (example with memory adapter)

bm, err := cache.NewCache("memory", `{"interval":60}`)	

Use it like this:

bm.Put("Neeke", 1, 10)
bm.Get("Neeke")
bm.IsExist("Neeke")
bm.Delete("Neeke")

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"}