cache

package
v0.9.0 Latest Latest
Warning

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

Go to latest
Published: Jul 18, 2020 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type RedisCacheStore

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

RedisCacheStore based redis implement cache store

func (*RedisCacheStore) Contains

func (rc *RedisCacheStore) Contains(key string) bool

Contains check key existed in redis cache store

func (*RedisCacheStore) Delete

func (rc *RedisCacheStore) Delete(key string)

Delete delete key value in redis cache store

func (*RedisCacheStore) Get

func (rc *RedisCacheStore) Get(key string) (val interface{}, ok bool)

Get get value from redis cache store

func (*RedisCacheStore) Set

func (rc *RedisCacheStore) Set(key string, val interface{}) (ok bool)

Set add or update key value

type Store

type Store interface {
	Get(key string) (val interface{}, ok bool)
	Set(key string, val interface{}) (ok bool)
	Delete(key string)
	Contains(key string) bool
}

Store cache store interface

func NewRedisCacheStore

func NewRedisCacheStore(name string, valType interface{}, expired time.Duration) Store

NewRedisCacheStore new redis cache store

Jump to

Keyboard shortcuts

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