Searched defs:linkedMap (Results 1 – 1 of 1) sorted by relevance
36 type linkedMap struct { struct37 m map[string]*list.Element38 l *list.List // Head of the list is the oldest element.50 func (m *linkedMap) put(key string, value *stickyStoreEntry) {60 func (m *linkedMap) get(key string) (*stickyStoreEntry, bool) {71 func (m *linkedMap) remove(key string) (*stickyStoreEntry, bool) {82 func (m *linkedMap) len() int {87 func (m *linkedMap) clear() {93 func (m *linkedMap) removeOldest() {