Add LRUCache.Clear

This commit is contained in:
世界 2023-08-24 19:58:37 +08:00
parent 620f3a3b88
commit 8d731e6885
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -258,6 +258,14 @@ func (c *LruCache[K, V]) Delete(key K) {
c.mu.Unlock() c.mu.Unlock()
} }
func (c *LruCache[K, V]) Clear() {
c.mu.Lock()
defer c.mu.Unlock()
for element := c.lru.Front(); element != nil; element = element.Next() {
c.deleteElement(element)
}
}
func (c *LruCache[K, V]) maybeDeleteOldest() { func (c *LruCache[K, V]) maybeDeleteOldest() {
if !c.staleReturn && c.maxAge > 0 { if !c.staleReturn && c.maxAge > 0 {
now := time.Now().Unix() now := time.Now().Unix()