Is there a sample application that is developed by using guava cache application and maven. I need to have an explanation to the code.
2 Answers
There is a related post in http://www.yusufaytas.com/caching-guava/. It tells the basic features about guava caching. At the end of the post, it also gives the source code.
2 Comments
mike Journey
Thank you very much. What does callable classes do?
yusufaytas
Callable classes are interfaces that provides substitution mechanism for standard load operation.
Here is another example http://syntx.co/languages-frameworks/java/implementing-google-guava-cache-using-proxy-pattern/ which shows how to use google guava cache while implementing a proxy design pattern. The post also lists maven dependencies for guava cache.