djsegal / Memoize.jl

@memoize macro for Julia

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Memoize.jl

Build Status Coverage Status

Easy memoization for Julia.

Usage

using Memoize
@memoize function x(a)
	println("Running")
	a
end
julia> x(1)
Running
1

julia> x(1)
1

By default, Memoize.jl uses an ObjectIdDict as a cache, but it's also possible to specify the type of the cache. If you want to cache vectors based on the values they contain, you probably want this:

using Memoize
@memoize Dict function x(a)
	println("Running")
	a
end

About

@memoize macro for Julia

License:Other


Languages

Language:Julia 100.0%