macmemo icon indicating copy to clipboard operation
macmemo copied to clipboard

Scala macro-based utility for function memoization

Results 2 macmemo issues
Sort by recently updated
recently updated
newest added

The following code not works: ``` import com.softwaremill.macmemo.memoize class GraphBuilder { val max = 20000 // val max = read from props file. @memoize(maxSize = max, expiresAfter = 2 hours)...

User story: I have a program that undergoes periods of simulation, then reporting on the simulation. During the simulation, I would like to mark some or maybe all @memoized functions...