mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.cache: Add method for removing all data (does not call eviction callback)
This commit is contained in:
parent
01d628a547
commit
41d8ce3493
1 changed files with 7 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue