memoize.lua icon indicating copy to clipboard operation
memoize.lua copied to clipboard

memoized functions in lua

Results 3 memoize.lua issues
Sort by recently updated
recently updated
newest added

- 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...