HashMap
Entries in the map have a limited lifelength, and the get method will only return the stored object during a limited time period.
get
After the timeout period, thr object will be removed.
5253545556575859
public RemotingClient(String servicePath) { this.servicePath = servicePath; callLock = new Object(); caches = new HashMap(); fastCache = new CacheMap(1000); slowCache = new CacheMap(10000); }