cache

package
v0.0.2-0...-1c7e8a7 Latest Latest
Warning

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

Go to latest
Published: Jan 24, 2021 License: Unlicense, MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ErrElementNotFound is returned when element isn't found in the cache.
	ErrElementNotFound = fmt.Errorf("unable to find element")
)

Functions

func Check

func Check(err error) bool

func Debug

func Debug(a ...interface{})

func Debugc

func Debugc(fn func() string)

func Debugf

func Debugf(format string, a ...interface{})

func Debugs

func Debugs(a interface{})

func Error

func Error(a ...interface{})

func Errorc

func Errorc(fn func() string)

func Errorf

func Errorf(format string, a ...interface{})

func Errors

func Errors(a interface{})

func Fatal

func Fatal(a ...interface{})

func Fatalc

func Fatalc(fn func() string)

func Fatalf

func Fatalf(format string, a ...interface{})

func Fatals

func Fatals(a interface{})

func Info

func Info(a ...interface{})

func Infoc

func Infoc(fn func() string)

func Infof

func Infof(format string, a ...interface{})

func Infos

func Infos(a interface{})

func Trace

func Trace(a ...interface{})

func Tracec

func Tracec(fn func() string)

func Tracef

func Tracef(format string, a ...interface{})

func Traces

func Traces(a interface{})

func Warn

func Warn(a ...interface{})

func Warnc

func Warnc(fn func() string)

func Warnf

func Warnf(format string, a ...interface{})

func Warns

func Warns(a interface{})

Types

type Cache

type Cache interface {
	// Put stores the given (key,value) pair, replacing existing value if key already exists.
	Put(key interface{}, value Value) error
	// Get returns the value for a given key.
	Get(key interface{}) (Value, error)
	// Len returns number of elements in the cache.
	Len() int
}

Cache represents a generic cache.

type CacheableBlock

type CacheableBlock struct {
	*util.Block
}

CacheableBlock is a wrapper around the util.Block type which provides a Size method used by the cache to target certain memory usage.

func (*CacheableBlock) Size

func (c *CacheableBlock) Size() (uint64, error)

Size returns size of this block in bytes.

type CacheableFilter

type CacheableFilter struct {
	*gcs.Filter
}

CacheableFilter is a wrapper around Filter type which provides a Size method used by the cache to target certain memory usage.

func (*CacheableFilter) Size

func (c *CacheableFilter) Size() (uint64, error)

Size returns size of this filter in bytes.

type Value

type Value interface {
	// Size determines how big this entry would be in the cache. For example, for a filter, it could be the size of the
	// filter in bytes.
	Size() (uint64, error)
}

Value represents a value stored in the Cache.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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