cache

package
v0.31.0 Latest Latest
Warning

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

Go to latest
Published: Jun 7, 2024 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func MakeCacheable

func MakeCacheable[T any](cache Cacheable, id string, f func() (*T, error)) (*T, error)

Types

type Cache

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

func New

func New(duration time.Duration) *Cache

func (*Cache) Get

func (c *Cache) Get(key string) (interface{}, bool)

func (*Cache) Set

func (c *Cache) Set(key string, value interface{})

func (*Cache) Stop

func (c *Cache) Stop()

type Cacheable

type Cacheable interface {
	// Set sets a value in the cache with the given key
	Set(key string, value interface{})

	// Get gets a value from the cache with the given key
	Get(key string) (interface{}, bool)

	// Stop stops the cache and clears any goroutines
	Stop()
}

Jump to

Keyboard shortcuts

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