Need micro caching? Memoization to the rescue
Caching solves wide sort of performance problems. There are many ways to integrate caching into our applications. For example when we use Spring there is easy to use @Cacheable support. Quite easy but we still have to configure cache manager, cache regions, etc. Sometimes it's unfortunately like taking a sledgehammer to crack a nut. So what can we do to "go lighter"?
There is a technique called memoization. Technically it's as easy as pie but true genius lies in simplicity. Model solution looks as follows:
The above line builds memoizer with TTL = 5 seconds. As you can see - simple... but powerful :)
There is a technique called memoization. Technically it's as easy as pie but true genius lies in simplicity. Model solution looks as follows:
public Foo getValue() { if (storedValue == null) { storedValue = retrieveFoo(); } return storedValue; }As you can see there is no problem in implementing it manually, but as long as we remember about DRY rule we can use already implemented solutions which additionally provides thread safety. Pretty good idea is to use Guava library.
// create Supplier<Foo> memoizer = Suppliers.memoize(this::retrieveFoo); // and use Foo variable = memoizer.get();Sometimes it's enough but what can we do if we need to specify TTL for our value? We have to store (cache) retrieved value only for few seconds and after exceeding defined duration get this value one more time? One more time we can use functionality provided by Guava.
Supplier<Foo> memoizer = Suppliers.memoizeWithExpiration(this::retrieveFoo, 5, TimeUnit.SECONDS);
The above line builds memoizer with TTL = 5 seconds. As you can see - simple... but powerful :)
Comments
Corporate TRaining Spring Framework
Project Centers in Chennai For CSE
Spring Training in Chennai
vé máy bay đi Mỹ giá rẻ 2021
bay từ california về việt nam mất bao lâu
vé máy bay từ canada về việt nam bao nhiêu tiền
vé máy bay vietjet từ nhật về việt nam
Có chuyến bay từ Hàn Quốc về Việt Nam không
Vé máy bay từ Đài Loan về Việt Nam
vé máy bay chuyên gia sang Việt Nam