Documentation ¶
Index ¶
- Variables
- func Check(err error) bool
- func Debug(a ...interface{})
- func Debugc(fn func() string)
- func Debugf(format string, a ...interface{})
- func Debugs(a interface{})
- func Error(a ...interface{})
- func Errorc(fn func() string)
- func Errorf(format string, a ...interface{})
- func Errors(a interface{})
- func Fatal(a ...interface{})
- func Fatalc(fn func() string)
- func Fatalf(format string, a ...interface{})
- func Fatals(a interface{})
- func Info(a ...interface{})
- func Infoc(fn func() string)
- func Infof(format string, a ...interface{})
- func Infos(a interface{})
- func Trace(a ...interface{})
- func Tracec(fn func() string)
- func Tracef(format string, a ...interface{})
- func Traces(a interface{})
- func Warn(a ...interface{})
- func Warnc(fn func() string)
- func Warnf(format string, a ...interface{})
- func Warns(a interface{})
- type Cache
- type CacheableBlock
- type CacheableFilter
- type Value
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 ¶
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 ¶
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 ¶
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.
Click to show internal directories.
Click to hide internal directories.