This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
when objects to be distributed?.Why can't all object exist in same same physical computer(vm).IF it needs any perfomance improvment ,i can use caching?
IF it needs any perfomance improvment ,i can use caching?
If your application is CPU bound, how does caching help? If your perfoamnce problem is memory bound, how does caching help?
Caching typically helps when data is sourced from some persistant store the has a high IO impact. Its not a panacea for all performance problems, indeed it may cause performance issues if your application is not distibutable and you start to hit the limits of your JVM's heap.