mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.cache: Add head() and tail() methods (and tests)
This commit is contained in:
parent
74f29daa29
commit
5f86077aa2
2 changed files with 38 additions and 1 deletions
|
@ -92,6 +92,18 @@ function cache_methods:count()
|
|||
return self._count;
|
||||
end
|
||||
|
||||
function cache_methods:head()
|
||||
local head = self._head;
|
||||
if not head then return nil, nil; end
|
||||
return head.key, head.value;
|
||||
end
|
||||
|
||||
function cache_methods:tail()
|
||||
local tail = self._tail;
|
||||
if not tail then return nil, nil; end
|
||||
return tail.key, tail.value;
|
||||
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