util.cache: Add method for removing all data (does not call eviction callback)

This commit is contained in:
Kim Alvefur 2017-11-07 00:38:47 +01:00
parent 01d628a547
commit 41d8ce3493

View file

@ -139,6 +139,13 @@ function cache_methods:table()
return self.proxy_table;
end
function cache_methods:clear()
self._data = {};
self._count = 0;
self._head = nil;
self._tail = nil;
end
local function new(size, on_evict)
size = assert(tonumber(size), "cache size must be a number");
size = math.floor(size);