Files
koreader/frontend/cacheitem.lua

26 lines
848 B
Lua
Raw Normal View History

2013-10-18 22:38:07 +02:00
--[[
Inheritable abstraction for cache items
--]]
local CacheItem = {
size = 128, -- some reasonable default for a small table.
2013-10-18 22:38:07 +02:00
}
--- NOTE: As far as size estimations go, the assumption is that a key, value pair should roughly take two words,
--- and the most common items we cache are Geom-like tables (i.e., 4 key-value pairs).
--- That's generally a low estimation, especially for larger tables, where memory allocation trickery may be happening.
2013-10-18 22:38:07 +02:00
function CacheItem:new(o)
2014-03-13 21:52:43 +08:00
o = o or {}
setmetatable(o, self)
self.__index = self
return o
2013-10-18 22:38:07 +02:00
end
-- Called on eviction.
-- We generally use it to free C/FFI ressources *immediately* (as opposed to relying on our Userdata/FFI finalizers to do it "later" on GC).
-- c.f., TileCacheItem, GlyphCacheItem & ImageCacheItem
2013-10-18 22:38:07 +02:00
function CacheItem:onFree()
end
return CacheItem