memcache

package
v0.0.0-...-a8acd24 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 22, 2017 License: Apache-2.0, Apache-2.0 Imports: 6 Imported by: 0

Documentation

Overview

Package memcache for cache provider

depend on github.com/bradfitz/gomemcache/memcache

go install github.com/bradfitz/gomemcache/memcache

Usage: import(

_ "github.com/astaxie/beego/cache/memcache"
"github.com/astaxie/beego/cache"

)

bm, err := cache.NewCache("memcache", `{"conn":"127.0.0.1:11211"}`)

more docs http://beego.me/docs/module/cache.md

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewMemCache

func NewMemCache() cache.Cache

NewMemCache create new memcache adapter.

Types

type Cache

type Cache struct {
	// contains filtered or unexported fields
}

Cache Memcache adapter.

func (*Cache) ClearAll

func (rc *Cache) ClearAll() error

ClearAll clear all cached in memcache.

func (*Cache) Decr

func (rc *Cache) Decr(key string) error

Decr decrease counter.

func (*Cache) Delete

func (rc *Cache) Delete(key string) error

Delete delete value in memcache.

func (*Cache) Get

func (rc *Cache) Get(key string) interface{}

Get get value from memcache.

func (*Cache) GetMulti

func (rc *Cache) GetMulti(keys []string) []interface{}

GetMulti get value from memcache.

func (*Cache) Incr

func (rc *Cache) Incr(key string) error

Incr increase counter.

func (*Cache) IsExist

func (rc *Cache) IsExist(key string) bool

IsExist check value exists in memcache.

func (*Cache) Put

func (rc *Cache) Put(key string, val interface{}, timeout time.Duration) error

Put put value to memcache. only support string.

func (*Cache) StartAndGC

func (rc *Cache) StartAndGC(config string) error

StartAndGC start memcache adapter. config string is like {"conn":"connection info"}. if connecting error, return.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL