services

package
v1.1.0 Latest Latest
Warning

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

Go to latest
Published: Dec 22, 2021 License: MIT Imports: 10 Imported by: 0

Documentation

Index

Constants

View Source
const (
	NoneDuration = time.Duration(-1)
)

Variables

View Source
var ErrKeyNotFound = errors.New("key not found")
View Source
var ErrTypeNotOk = errors.New("val type not ok")

Functions

func NewMemoryCache

func NewMemoryCache(params ...interface{}) (interface{}, error)

func NewRedisCache

func NewRedisCache(params ...interface{}) (interface{}, error)

Types

type GocoreRedisCache

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

func (*GocoreRedisCache) Calc

func (r *GocoreRedisCache) Calc(ctx context.Context, key string, step int64) (int64, error)

func (*GocoreRedisCache) Decrement

func (r *GocoreRedisCache) Decrement(ctx context.Context, key string) (int64, error)

func (*GocoreRedisCache) Del

func (r *GocoreRedisCache) Del(ctx context.Context, key string) error

func (*GocoreRedisCache) DelMany

func (r *GocoreRedisCache) DelMany(ctx context.Context, keys []string) error

func (*GocoreRedisCache) Get

func (r *GocoreRedisCache) Get(ctx context.Context, key string) (string, error)

func (*GocoreRedisCache) GetMany

func (r *GocoreRedisCache) GetMany(ctx context.Context, keys []string) (map[string]string, error)

GetMany 获取某些key对应的值

func (*GocoreRedisCache) GetObj

func (r *GocoreRedisCache) GetObj(ctx context.Context, key string, model interface{}) error

GetObj 获取某个key对应的对象, 对象必须实现 https://pkg.go.dev/encoding#BinaryUnMarshaler

func (*GocoreRedisCache) GetTTL

func (r *GocoreRedisCache) GetTTL(ctx context.Context, key string) (time.Duration, error)

func (*GocoreRedisCache) Increment

func (r *GocoreRedisCache) Increment(ctx context.Context, key string) (int64, error)

func (*GocoreRedisCache) Remember

func (r *GocoreRedisCache) Remember(ctx context.Context, key string, timeout time.Duration, rememberFunc contract.RememberFunc, obj interface{}) error

func (*GocoreRedisCache) Set

func (r *GocoreRedisCache) Set(ctx context.Context, key string, val string, timeout time.Duration) error

Set 设置某个key和值到缓存,带超时时间

func (*GocoreRedisCache) SetForever

func (r *GocoreRedisCache) SetForever(ctx context.Context, key string, val string) error

func (*GocoreRedisCache) SetForeverObj

func (r *GocoreRedisCache) SetForeverObj(ctx context.Context, key string, val interface{}) error

func (*GocoreRedisCache) SetMany

func (r *GocoreRedisCache) SetMany(ctx context.Context, data map[string]string, timeout time.Duration) error

SetMany 设置多个key和值到缓存

func (*GocoreRedisCache) SetObj

func (r *GocoreRedisCache) SetObj(ctx context.Context, key string, val interface{}, timeout time.Duration) error

SetObj 设置某个key和对象到缓存, 对象必须实现 https://pkg.go.dev/encoding#BinaryMarshaler

func (*GocoreRedisCache) SetTTL

func (r *GocoreRedisCache) SetTTL(ctx context.Context, key string, timeout time.Duration) error

type MemoryCache

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

func (*MemoryCache) Calc

func (m *MemoryCache) Calc(ctx context.Context, key string, step int64) (int64, error)

func (*MemoryCache) Decrement

func (m *MemoryCache) Decrement(ctx context.Context, key string) (int64, error)

func (*MemoryCache) Del

func (m *MemoryCache) Del(ctx context.Context, key string) error

func (*MemoryCache) DelMany

func (m *MemoryCache) DelMany(ctx context.Context, keys []string) error

func (*MemoryCache) Get

func (m *MemoryCache) Get(ctx context.Context, key string) (string, error)

func (*MemoryCache) GetMany

func (m *MemoryCache) GetMany(ctx context.Context, keys []string) (map[string]string, error)

func (*MemoryCache) GetObj

func (m *MemoryCache) GetObj(ctx context.Context, key string, obj interface{}) error

GetObj 获取json对象

func (*MemoryCache) GetTTL

func (m *MemoryCache) GetTTL(ctx context.Context, key string) (time.Duration, error)

func (*MemoryCache) Increment

func (m *MemoryCache) Increment(ctx context.Context, key string) (int64, error)

func (*MemoryCache) Remember

func (m *MemoryCache) Remember(ctx context.Context, key string, timeout time.Duration, rememberFunc contract.RememberFunc, obj interface{}) error

func (*MemoryCache) Set

func (m *MemoryCache) Set(ctx context.Context, key string, val string, timeout time.Duration) error

func (*MemoryCache) SetForever

func (m *MemoryCache) SetForever(ctx context.Context, key string, val string) error

func (*MemoryCache) SetForeverObj

func (m *MemoryCache) SetForeverObj(ctx context.Context, key string, val interface{}) error

func (*MemoryCache) SetMany

func (m *MemoryCache) SetMany(ctx context.Context, data map[string]string, timeout time.Duration) error

func (*MemoryCache) SetObj

func (m *MemoryCache) SetObj(ctx context.Context, key string, val interface{}, timeout time.Duration) error

func (*MemoryCache) SetTTL

func (m *MemoryCache) SetTTL(ctx context.Context, key string, timeout time.Duration) error

type MemoryData

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

Jump to

Keyboard shortcuts

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