May 22 2009
Cache implementation for multi threaded environment
Sometimes, we need to fetch data from a slow external system and data doesn’t even change often. At the cost of increased memory foot print, we can cache the data that can be expired time to time, knowing it can always be recreated when needed again.
Data caching limits the remote method invocations. It improves performance [...]
