Documentation ¶
Index ¶
- type Cache
- func (c *Cache) Capacity() uint64
- func (c *Cache) Getter(store internal.Storage) storage.Getter
- func (c *Cache) Putter(store internal.Storage) storage.Putter
- func (c *Cache) RemoveOldest(ctx context.Context, store internal.Storage, chStore storage.ChunkStore, ...) error
- func (c *Cache) ShallowCopy(ctx context.Context, store internal.Storage, addrs ...swarm.Address) (err error)
- func (c *Cache) Size() uint64
- type CacheEntryItem
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Cache ¶
type Cache struct {
// contains filtered or unexported fields
}
Cache is the part of the localstore which keeps track of the chunks that are not part of the reserve but are potentially useful to store for obtaining bandwidth incentives.
func New ¶
New creates a new Cache component with the specified capacity. The store is used here only to read the initial state of the cache before shutdown if there was any.
func (*Cache) Getter ¶
Getter returns a Storage.Getter instance which checks if the chunks accessed are part of cache it will update the cache indexes. If the operation to update the cache indexes fail, we need to fail the operation as this should signal the user of this getter to rollback the operation.
func (*Cache) Putter ¶
Putter returns a Storage.Putter instance which adds the chunk to the underlying chunkstore and also adds a Cache entry for the chunk.
func (*Cache) RemoveOldest ¶ added in v1.17.6
func (c *Cache) RemoveOldest( ctx context.Context, store internal.Storage, chStore storage.ChunkStore, count uint64, ) error
RemoveOldest removes the oldest cache entries from the store. The count specifies the number of entries to remove.