mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.cache: Add support for creating a proxy table to a cache, that looks and acts (mostly) like a normal table. No tests yet.
This commit is contained in:
parent
288422c9c3
commit
59957bc13c
1 changed files with 22 additions and 0 deletions
|
@ -116,6 +116,28 @@ function cache_methods:tail()
|
|||
return tail.key, tail.value;
|
||||
end
|
||||
|
||||
function cache_methods:table()
|
||||
if not self.proxy_table then
|
||||
self.proxy_table = setmetatable({}, {
|
||||
__index = function (t, k)
|
||||
return self:get(k);
|
||||
end;
|
||||
__newindex = function (t, k, v)
|
||||
if not self:set(k, v) then
|
||||
error("failed to insert key into cache - full");
|
||||
end
|
||||
end;
|
||||
__pairs = function (t)
|
||||
return self:items();
|
||||
end;
|
||||
__len = function (t)
|
||||
return self:count();
|
||||
end;
|
||||
});
|
||||
end
|
||||
return self.proxy_table;
|
||||
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