awesome/tests/examples/text/gears/cache/cache.lua

15 lines
445 B
Lua
Raw Normal View History

2020-01-03 13:42:39 +01:00
--DOC_GEN_OUTPUT --DOC_HIDE
local cache = require("gears.cache") --DOC_HIDE
local test_cache = cache.new(function(test)
-- let's just print about what we created
print("new entry created with value " .. test)
-- Pretend this is some expensive computation
return test * 42
end)
-- Populate the cache
print(test_cache:get(0))
print(test_cache:get(1))
print(test_cache:get(2))
-- no message since it exists
print(test_cache:get(0))