util.cache: Add head() and tail() methods (and tests)

This commit is contained in:
Matthew Wild 2016-03-17 19:07:40 +00:00
parent 74f29daa29
commit 5f86077aa2
2 changed files with 38 additions and 1 deletions

View file

@ -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);