Open
Description
julia> @memoize LRU(maxsize=10) f(x) = x + 1
f (generic function with 1 method)
julia> @memoize NonexistentCacheType f(x) = x + 1
f (generic function with 1 method)
julia> f(3)
4
I would expect an error (or a loud warning message) on that second call. At the very least, I'd want a loud warning in the documentation.
Metadata
Metadata
Assignees
Labels
No labels
Activity