memoize.lua
memoize.lua copied to clipboard
memoized functions in lua
- Add a rockspec to allow building straight from git. - Add a procedure for invalidating the cache.
On all configurations, the test failed. Tested on: - win10 x64 - and lua: * Lua 5.1.5 * LuaJIT 2.1.1695653777 * Lua 5.3.6 / due to the increased stack size,...
Here is a faster version of cache_get. It removes a hash lookup which can take a decent toll on performance under a cache hit scenario. The gain is most noticeable...