filecache.lua

Sun, 07 May 2017 20:02:53 +0100

author
Tuomo Valkonen <tuomov@iki.fi>
date
Sun, 07 May 2017 20:02:53 +0100
changeset 6
219d7a7304f8
parent 3
b2df1b3f2c83
child 7
038275cd92ed
permissions
-rw-r--r--

5.3 updates


module("filecache", package.seeall)

local cache={}

function get(file)
    if not cache[file] then
        local f=io.openX(file, "r")
        cache[file]=f:read('*a')
        f:close()
    end
    return cache[file]
end

mercurial