filecache.lua@7667b101cb1e
    filecache.lua
    Sat, 01 Nov 2014 23:34:21 +0000
    
        - author
- Tuomo Valkonen <tuomov@iki.fi>
- date
- Sat, 01 Nov 2014 23:34:21 +0000
- changeset 5
- 7667b101cb1e
- parent 3
- 
b2df1b3f2c83
- child 7
- 
038275cd92ed
- permissions
- -rwxr-xr-x
Lua 5.2 compatibility hack
    
        
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