Skip to content
Advertisement

Tag: memoizee

memoizee – Cached based on arguments

I would like to memoize results of function based on provided arguments. For example: This invocations should be independent and should have standalone cached results. Currently I always receive the result from the first call. I tried used other library than memoizee. With fast-memoize I got expected effect, but fast-memoize doesn’t allow set maxAge of cached results. In second call

Advertisement