Documentation
¶
Overview ¶
Package filesystem is the filesystem implementation of the Trickster Cache
Index ¶
- type Cache
- func (c *Cache) BulkRemove(cacheKeys []string)
- func (c *Cache) Close() error
- func (c *Cache) Configuration() *options.Options
- func (c *Cache) Connect() error
- func (c *Cache) Locker() locks.NamedLocker
- func (c *Cache) Remove(cacheKey string)
- func (c *Cache) Retrieve(cacheKey string, allowExpired bool) ([]byte, status.LookupStatus, error)
- func (c *Cache) SetLocker(l locks.NamedLocker)
- func (c *Cache) SetTTL(cacheKey string, ttl time.Duration)
- func (c *Cache) Store(cacheKey string, data []byte, ttl time.Duration) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Cache ¶
type Cache struct { Name string Config *options.Options Index *index.Index Logger *log.Logger // contains filtered or unexported fields }
Cache describes a Filesystem Cache
func (*Cache) BulkRemove ¶
BulkRemove removes a list of objects from the cache
func (*Cache) Configuration ¶
Configuration returns the Configuration for the Cache object
func (*Cache) Connect ¶
Connect instantiates the Cache mutex map and starts the Expired Entry Reaper goroutine
func (*Cache) Retrieve ¶
Retrieve looks for an object in cache and returns it (or an error if not found)
func (*Cache) SetLocker ¶
func (c *Cache) SetLocker(l locks.NamedLocker)
SetLocker sets the cache's locker
Click to show internal directories.
Click to hide internal directories.