storage

package
v0.0.1-202404291803 Latest Latest
Warning

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

Go to latest
Published: Apr 29, 2024 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

View Source
const (
	PrefixKey = "__host"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type AdapterCache

type AdapterCache interface {
	String() string

	Get(key string) (string, error)
	Set(key string, val interface{}, expire int) error
	Del(key string) error

	HashGet(hk, key string) (string, error)
	HashSet(hk string, value interface{}, expire int) error
	HashGetAll(hk string) (map[string]string, error)
	HashDel(hk, key string) error

	Increase(key string) error
	Decrease(key string) error

	AddList(key string, values ...interface{}) error
	GetList(key string) ([]string, error)
	Append(key string, values ...interface{}) error
	GetPrefix(key string, length ...int) ([]string, error)

	Expire(key string, dur time.Duration) error
}

type AdapterLocker

type AdapterLocker interface {
	String() string
	Lock(key string, ttl int64, options *redislock.Options) (*redislock.Lock, error)
}

type AdapterQueue

type AdapterQueue interface {
	String() string
	Append(message Messager) error
	Register(name string, f ConsumerFunc)
	Run()
	Shutdown()
}

type ConsumerFunc

type ConsumerFunc func(Messager) error

type Messager

type Messager interface {
	SetID(string)
	SetStream(string)
	SetValues(map[string]interface{})
	GetID() string
	GetStream() string
	GetValues() map[string]interface{}
	GetPrefix() string
	SetPrefix(string)
	SetErrorCount(count int)
	GetErrorCount() int
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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