I am trying to implement Ehcache in my program,How can I configure Ehcache?Where Should I write the logic,in Impl class?what are all the configurations for that?Where should I put he Ehcache XML?I am new to this,Is there any examples other than Ehcache official website?Please Help
I am trying to implement Ehcache in my program,How can I configure Ehcache?Where Should
Share
Your questoin is overly broad, but here are few tips:
Decide whether you want to cache service layer or web layer
If service layer, avoid EhCache dependencies as much as possible. For instance Spring 3.1 introduced great caching abstraction driven by annotations.
If you want to cache web layer, EhCache provides nice web filter that intercepts all requests and caches the results. Use with care!
Remember about cache invalidation and consistency
Think about distribution
Collect statistcs and monitor them