Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion store.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ import (
// comparator) without first removing the existing item. Such an act would leave the item stranded in an unknown
// location within the index.
type Store struct {
tickerDelay int64

Storer
sync.RWMutex

Expand All @@ -46,7 +48,6 @@ type Store struct {
expiryNotifiers []NotifyFunc
accessNotifiers []NotifyFunc

tickerDelay int64
}

// NewStore returns an initialized store for you to use
Expand Down