util.cache: Pass cache itself to eviction callback

Simplifies access to the cache without moving code around a lot given
the currently common pattern of

	local some_cache = cache.new(size, function(k,v) end)
This commit is contained in:
Kim Alvefur 2023-06-30 22:01:55 +02:00
parent 29b6ed4f0a
commit 915ef3a222
2 changed files with 3 additions and 4 deletions

View file

@ -390,8 +390,7 @@ describe("util.cache", function()
end);
it("eviction stuff", function ()
local c;
c = cache.new(4, function(_k,_v)
local c = cache.new(4, function(_k,_v,c)
if c.size < 10 then
c:resize(c.size*2);
end