I'm trying to cache a lot of similar values with only set-like requirements. Unfortunately Set<?> allows me only to check whether an element exists inside - it won't give the existing element back to me. What I'd like to do is:
Element e = receiveSomeElement();
e = elements.cache(e);
// now e is either the original e, or one that was already in the cache
doSomeWorkOn(e);
I could probably simulate that with SortedSet and getting .subSet(e, e), but it seems like waste of time to keep the set sorted. I could also use HashMap<Element, Element> and store the same referrence as the key and value, but that seems just as dirty...
Is there some better way to do this?
ObjectCache<E> implements Set<E>with aWeakHashMap<E, WeakReference<E>>member. – viraptor May 10 '11 at 10:59