pull/1030/head
chrox 10 years ago
parent 2ff12af50c
commit 281df50da5

@ -69,8 +69,8 @@ end
function Cache:insert(key, object) function Cache:insert(key, object)
-- guarantee that we have enough memory in cache -- guarantee that we have enough memory in cache
if(object.size > self.max_memsize) then if(object.size > self.max_memsize) then
-- we're not allowed to claim this much at all DEBUG("too much memory claimed for", key)
error("too much memory claimed") return
end end
-- delete objects that least recently used -- delete objects that least recently used
-- (they are at the end of the cache_order array) -- (they are at the end of the cache_order array)

Loading…
Cancel
Save