Would there be another way to store the cache and ...
# getting-started
d
Would there be another way to store the cache and still be able to make efficient lookups? Also
getOrPut(Pair(name, obj))
is pretty useful for this cache... I tried with
Map<String, <Map<Obj1, Obj2>>
it wasn't quite as pleasant...