redis

package
v4.47.5 Latest Latest
Warning

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

Go to latest
Published: Sep 9, 2022 License: MIT Imports: 15 Imported by: 12

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ErrNoSubscriber = errors.New("no subscriber for channel")

Functions

func PullFor added in v4.44.0

func PullFor[T any](ctx context.Context, app App, key string, done <-chan struct{}, handler func(T, error))

PullFor pull with unmarshal of given type.

func SubscribeFor added in v4.44.0

func SubscribeFor[T any](ctx context.Context, app App, channel string, handler func(T, error)) func(context.Context) error

Types

type App

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

func New

func New(config Config, prometheusRegisterer prometheus.Registerer, tracer trace.Tracer) App

func (App) Delete

func (a App) Delete(ctx context.Context, keys ...string) error

func (App) Exclusive

func (a App) Exclusive(ctx context.Context, name string, timeout time.Duration, action func(context.Context) error) (acquired bool, err error)

func (App) Load

func (a App) Load(ctx context.Context, key string) ([]byte, error)

func (App) LoadMany added in v4.47.0

func (a App) LoadMany(ctx context.Context, keys ...string) ([]string, error)

func (App) Ping

func (a App) Ping() error

func (App) Publish added in v4.44.0

func (a App) Publish(ctx context.Context, channel string, value any) error

func (App) Pull added in v4.44.0

func (a App) Pull(ctx context.Context, key string, done <-chan struct{}, handler func(string, error))

Pull tasks from a list.

func (App) Push added in v4.44.0

func (a App) Push(ctx context.Context, key string, value any) error

Push a task to a list.

func (App) Scan added in v4.46.4

func (a App) Scan(ctx context.Context, pattern string, pageSize int64) (output []string, err error)

func (App) Store

func (a App) Store(ctx context.Context, key string, value any, duration time.Duration) error

func (App) Subscribe added in v4.44.0

func (a App) Subscribe(ctx context.Context, channel string) (<-chan *redis.Message, func(context.Context) error)

type Config

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

func Flags

func Flags(fs *flag.FlagSet, prefix string, overrides ...flags.Override) Config

Jump to

Keyboard shortcuts

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