Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Cache ¶
type Cache interface {
// Get returns the value for the given key in the cache, if it exists.
Get(key interface{}) (interface{}, bool)
// Set sets a value for the key in the cache, with the given cost.
Set(key interface{}, entry interface{}, cost int64) bool
// Wait waits for the cache to process and apply updates.
Wait()
// Close closes the cache's background workers (if any).
Close()
// GetMetrics returns the metrics block for the cache.
GetMetrics() Metrics
zerolog.LogObjectMarshaler
}
Cache defines an interface for a generic cache.
type Config ¶
type Config struct {
// NumCounters determines the number of counters (keys) to keep that hold
// access frequency information. It's generally a good idea to have more
// counters than the max cache capacity, as this will improve eviction
// accuracy and subsequent hit ratios.
//
// For example, if you expect your cache to hold 1,000,000 items when full,
// NumCounters should be 10,000,000 (10x). Each counter takes up roughly
// 3 bytes (4 bits for each counter * 4 copies plus about a byte per
// counter for the bloom filter). Note that the number of counters is
// internally rounded up to the nearest power of 2, so the space usage
// may be a little larger than 3 bytes * NumCounters.
NumCounters int64
// MaxCost can be considered as the cache capacity, in whatever units you
// choose to use.
//
// For example, if you want the cache to have a max capacity of 100MB, you
// would set MaxCost to 100,000,000 and pass an item's number of bytes as
// the `cost` parameter for calls to Set. If new items are accepted, the
// eviction process will take care of making room for the new item and not
// overflowing the MaxCost value.
MaxCost int64
// Metrics determines whether cache statistics are kept during the cache's
// lifetime. There *is* some overhead to keeping statistics, so you should
// only set this flag to true when testing or throughput performance isn't a
// major factor.
Metrics bool
}
Config for caching. See: https://github.com/outcaste-io/ristretto#Config
func (*Config) MarshalZerologObject ¶ added in v1.13.0
type Metrics ¶
type Metrics interface {
// Hits is the number of cache hits.
Hits() uint64
// Misses is the number of cache misses.
Misses() uint64
// CostAdded returns the total cost of added items.
CostAdded() uint64
// CostEvicted returns the total cost of evicted items.
CostEvicted() uint64
}
Metrics defines metrics exported by the cache.
Click to show internal directories.
Click to hide internal directories.