Documentation ¶
Index ¶
- Variables
- type CacheItem
- func (item *CacheItem) AccessCount() int64
- func (item *CacheItem) AccessedOn() time.Time
- func (item *CacheItem) AddAboutToExpireCallback(f func(interface{}))
- func (item *CacheItem) CreatedOn() time.Time
- func (item *CacheItem) Data() interface{}
- func (item *CacheItem) KeepAlive()
- func (item *CacheItem) Key() interface{}
- func (item *CacheItem) LifeSpan() time.Duration
- func (item *CacheItem) RemoveAboutToExpireCallback()
- func (item *CacheItem) SetAboutToExpireCallback(f func(interface{}))
- type CacheItemPair
- type CacheItemPairList
- type CacheTable
- func (table *CacheTable) Add(key interface{}, lifeSpan time.Duration, data interface{}) *CacheItem
- func (table *CacheTable) AddAboutToDeleteItemCallback(f func(*CacheItem))
- func (table *CacheTable) AddAddedItemCallback(f func(*CacheItem))
- func (table *CacheTable) Count() int
- func (table *CacheTable) Delete(key interface{}) (*CacheItem, error)
- func (table *CacheTable) DeleteByKey(keyname string)
- func (table *CacheTable) Exists(key interface{}) bool
- func (table *CacheTable) Flush()
- func (table *CacheTable) Foreach(trans func(key interface{}, item *CacheItem))
- func (table *CacheTable) FoundAddRtn(key interface{}, data interface{}, add bool) (r *CacheItem, ok bool)
- func (table *CacheTable) MostAccessed(count int64) []*CacheItem
- func (table *CacheTable) NotFoundAdd(key interface{}, lifeSpan time.Duration, data interface{}) bool
- func (table *CacheTable) RemoveAboutToDeleteItemCallback()
- func (table *CacheTable) RemoveAddedItemCallbacks()
- func (table *CacheTable) SetAboutToDeleteItemCallback(f func(*CacheItem))
- func (table *CacheTable) SetAddedItemCallback(f func(*CacheItem))
- func (table *CacheTable) SetDataLoader(f func(interface{}, ...interface{}) *CacheItem)
- func (table *CacheTable) SetLogger(logger *log.Logger)
- func (table *CacheTable) Value(key interface{}, args ...interface{}) (*CacheItem, error)
- func (table *CacheTable) Value1(key interface{}, lifeSpan time.Duration, f func(interface{}) interface{}) (r *CacheItem, ok bool)
- func (table *CacheTable) ValueBool(key interface{}, lifeSpan time.Duration) (r *CacheItem, ok bool)
Constants ¶
This section is empty.
Variables ¶
var ( // ErrKeyNotFound gets returned when a specific key couldn't be found ErrKeyNotFound = errors.New("Key not found in cache") // ErrKeyNotFoundOrLoadable gets returned when a specific key couldn't be // found and loading via the data-loader callback also failed ErrKeyNotFoundOrLoadable = errors.New("Key not found and could not be loaded into cache") )
Functions ¶
This section is empty.
Types ¶
type CacheItem ¶
CacheItem is an individual cache item Parameter data contains the user-set value in the cache.
func NewCacheItem ¶
NewCacheItem returns a newly created CacheItem. Parameter key is the item's cache-key. Parameter lifeSpan determines after which time period without an access the item will get removed from the cache. Parameter data is the item's value.
func (*CacheItem) AccessCount ¶
AccessCount returns how often this item has been accessed.
func (*CacheItem) AccessedOn ¶
AccessedOn returns when this item was last accessed.
func (*CacheItem) AddAboutToExpireCallback ¶
func (item *CacheItem) AddAboutToExpireCallback(f func(interface{}))
AddAboutToExpireCallback appends a new callback to the AboutToExpire queue
func (*CacheItem) Data ¶
func (item *CacheItem) Data() interface{}
Data returns the value of this cached item.
func (*CacheItem) KeepAlive ¶
func (item *CacheItem) KeepAlive()
KeepAlive marks an item to be kept for another expireDuration period.
func (*CacheItem) Key ¶
func (item *CacheItem) Key() interface{}
Key returns the key of this cached item.
func (*CacheItem) RemoveAboutToExpireCallback ¶
func (item *CacheItem) RemoveAboutToExpireCallback()
RemoveAboutToExpireCallback empties the about to expire callback queue
func (*CacheItem) SetAboutToExpireCallback ¶
func (item *CacheItem) SetAboutToExpireCallback(f func(interface{}))
SetAboutToExpireCallback configures a callback, which will be called right before the item is about to be removed from the cache.
type CacheItemPair ¶
type CacheItemPair struct { Key interface{} AccessCount int64 }
CacheItemPair maps key to access counter
type CacheItemPairList ¶
type CacheItemPairList []CacheItemPair
CacheItemPairList is a slice of CacheIemPairs that implements sort. Interface to sort by AccessCount.
func (CacheItemPairList) Len ¶
func (p CacheItemPairList) Len() int
func (CacheItemPairList) Less ¶
func (p CacheItemPairList) Less(i, j int) bool
func (CacheItemPairList) Swap ¶
func (p CacheItemPairList) Swap(i, j int)
type CacheTable ¶
CacheTable is a table within the cache
func Cache ¶
func Cache(table string) *CacheTable
Cache returns the existing cache table with given name or creates a new one if the table does not exist yet.
func (*CacheTable) Add ¶
func (table *CacheTable) Add(key interface{}, lifeSpan time.Duration, data interface{}) *CacheItem
Add adds a key/value pair to the cache. Parameter key is the item's cache-key. Parameter lifeSpan determines after which time period without an access the item will get removed from the cache. Parameter data is the item's value.
func (*CacheTable) AddAboutToDeleteItemCallback ¶
func (table *CacheTable) AddAboutToDeleteItemCallback(f func(*CacheItem))
AddAboutToDeleteItemCallback appends a new callback to the AboutToDeleteItem queue
func (*CacheTable) AddAddedItemCallback ¶
func (table *CacheTable) AddAddedItemCallback(f func(*CacheItem))
AddAddedItemCallback appends a new callback to the addedItem queue
func (*CacheTable) Count ¶
func (table *CacheTable) Count() int
Count returns how many items are currently stored in the cache.
func (*CacheTable) Delete ¶
func (table *CacheTable) Delete(key interface{}) (*CacheItem, error)
Delete an item from the cache.
func (*CacheTable) DeleteByKey ¶
func (table *CacheTable) DeleteByKey(keyname string)
func (*CacheTable) Exists ¶
func (table *CacheTable) Exists(key interface{}) bool
Exists returns whether an item exists in the cache. Unlike the Value method Exists neither tries to fetch data via the loadData callback nor does it keep the item alive in the cache.
func (*CacheTable) Flush ¶
func (table *CacheTable) Flush()
Flush deletes all items from this cache table.
func (*CacheTable) Foreach ¶
func (table *CacheTable) Foreach(trans func(key interface{}, item *CacheItem))
Foreach all items
func (*CacheTable) FoundAddRtn ¶
func (table *CacheTable) FoundAddRtn(key interface{}, data interface{}, add bool) (r *CacheItem, ok bool)
func (*CacheTable) MostAccessed ¶
func (table *CacheTable) MostAccessed(count int64) []*CacheItem
MostAccessed returns the most accessed items in this cache table
func (*CacheTable) NotFoundAdd ¶
func (table *CacheTable) NotFoundAdd(key interface{}, lifeSpan time.Duration, data interface{}) bool
NotFoundAdd checks whether an item is not yet cached. Unlike the Exists method this also adds data if the key could not be found.
func (*CacheTable) RemoveAboutToDeleteItemCallback ¶
func (table *CacheTable) RemoveAboutToDeleteItemCallback()
RemoveAboutToDeleteItemCallback empties the about to delete item callback queue
func (*CacheTable) RemoveAddedItemCallbacks ¶
func (table *CacheTable) RemoveAddedItemCallbacks()
RemoveAddedItemCallbacks empties the added item callback queue
func (*CacheTable) SetAboutToDeleteItemCallback ¶
func (table *CacheTable) SetAboutToDeleteItemCallback(f func(*CacheItem))
SetAboutToDeleteItemCallback configures a callback, which will be called every time an item is about to be removed from the cache.
func (*CacheTable) SetAddedItemCallback ¶
func (table *CacheTable) SetAddedItemCallback(f func(*CacheItem))
SetAddedItemCallback configures a callback, which will be called every time a new item is added to the cache.
func (*CacheTable) SetDataLoader ¶
func (table *CacheTable) SetDataLoader(f func(interface{}, ...interface{}) *CacheItem)
SetDataLoader configures a data-loader callback, which will be called when trying to access a non-existing key. The key and 0...n additional arguments are passed to the callback function.
func (*CacheTable) SetLogger ¶
func (table *CacheTable) SetLogger(logger *log.Logger)
SetLogger sets the logger to be used by this cache table.
func (*CacheTable) Value ¶
func (table *CacheTable) Value(key interface{}, args ...interface{}) (*CacheItem, error)
Value returns an item from the cache and marks it to be kept alive. You can pass additional arguments to your DataLoader callback function.