# A cache hit is a method that did not run

cacheManager        : org.springframework.cache.concurrent.ConcurrentMapCacheManager
repository latency  : 200 ms per lookup

--- first call (miss) ---
returned            : Book[isbn=978-0134685991, title=Effective Java, year=2018]
elapsed             : 200 ms
repository calls    : 1

--- second call (hit) ---
returned            : Book[isbn=978-0134685991, title=Effective Java, year=2018]
elapsed             : 0 ms
repository calls    : 1   <- still 1, the method body never ran
same object?        : true
