With caffeine we can implement a loadAllmethod which allows us to bulk load the values for multiple keys in a single method call. The aedile Builder build method only allows us to implement single item loading.
fun build(compute: suspend (K) -> V): LoadingCache<K, V>
With caffeine we can implement a
loadAll
method which allows us to bulk load the values for multiple keys in a single method call. The aedile Builderbuild
method only allows us to implement single item loading.