Simple memoization extension function for Kotlin
Suppose you have a performance-intensive function that you must call repeatedly. A common solution is to build an internal cache (...) Memoization is a feature built into a programming language that enables automatic caching of recurring function-return values.
Functional Thinking - Neal Ford
Kotlin doesn't have yet any similar feature in it's tools. Although it might have it at some point I wanted to experiment a bit with this technique so that's why I created the lib.
Functions must be pure for the caching technique to work. A pure function is one that has no side effects: it references no other mutable class fields, doesn't set any values other than the return value, and relies only on the parameters for input. Obviously, you can reuse cached results successfully only if the function reliably returns the same values for a given set of parameters.
Also, when passing or returning Objects, make sure to implement both equals
and hashcode
for the cache to work properly!
Having a function like
fun anExpensiveFun(someArg: Int, someOtherArg: Boolean): String = { ... }
You can create a memoized version of it by just calling an extension function over it like this:
val memoized = ::anExpensiveFun.memoize()
Now memoized
is the same function as anExpensiveFun
but is wrapped in a Closure that contains an internal cache, meaning that the first call to:
memoized(5, true)
Will just execute the function. But the second call with the same arguments will retrieve the already calculated value from cache.
Note that we're storing values in a memory cache, so try to have that in consideration when doing a relatively big amount of calls to your memoized function or if you use big objects as parameters or return type.
If you want to specify how big the cache has to be you can do it like the following:
val memoized = ::anExpensiveFun.memoize(50)
By default the cache size is initialized with 256.
Now you can also pass a specific HashMap
instance (like ConcurrentHashMap) which also allows freeing the cache after you're done.
val map = ConcurrentHashMap<Int, Long>(50)
val memoizedFib = ::fib.memoize(cache = map)
(...)
// clear the cache at the end
map.clear
Add as a dependency to your build.gradle
maven { url "https://dl.bintray.com/aballano/maven/" }
//...
dependencies {
implementation 'mnemonik:mnemonik:2.1.0'
}
or to your pom.xml
<dependency>
<groupId>mnemonik</groupId>
<artifactId>mnemonik</artifactId>
<version>2.1.0</version>
<type>pom</type>
</dependency>
maven { url 'https://jitpack.io' }
dependencies {
implementation 'com.github.aballano:mnemonik:2.1.0'
}
MIT License
Copyright (c) 2020 aballano
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```