March 09, 2017
Spring Cache - Part 5 - CacheEvict
In the Spring Cache series so far ( Part1 , Part2 , Part3 , Part4 ), we have seen examples where the data is getting added to the cache through the use of @Cacheable and @CachePut . But, what about removing data from cache? Consider a call to delete the record from Service or DB, in which case, we would also want to delete that record from the cache. Read More
by
Phee Jay
March 02, 2017
Spring Cache - Part 4 - CachePut
There are scenarios, unlike retrievals, where you do not want to skip the execution of the method e.g. insert/update of a record. Such methods should not be marked as Cacheable. But, you might still want to cache the result of these methods, in order to avoid unnecessary retrievals in future calls. Read More
by
Phee Jay
March 01, 2017
Spring Cache - Part 3 - Conditional Cache
In this part of the tutorial, we will see how data can be cached conditionally. (If you haven't checked the previous parts, please visit Part 1 and Part 2 . They contain sample code that the examples below refer) Read More
by
Phee Jay
February 25, 2017
Spring Cache - Part 2 - Cache Keys
In part 1 of the post, we looked at how data can be cached through simple configuration. In this part, we are going to explore the cache keys. Read More
by
Phee Jay
February 23, 2017
Spring Cache - Part 1 - Introduction
Caching is an extremely important aspect of applications that care about lower latencies. There are a multitude of rules one has to adhere to while setting up a cache, in order to optimize the performance; but not overdo it. We will not get into those details in this post. Our focus would be on what Spring provides to enable caching in your applications. Read More
by
Phee Jay