I am working on using a real time application in java, I have a data structure that looks like this.
HashMap<Integer, Object> myMap;
now this works really well for storing the data that I need but it kills me on getting data out. The underlying problems that I run into is that if i call
Collection<Object> myObjects = myMap.values();
Iterator<object> it = myObjects.iterator();
while(it.hasNext(){ object o = it.next(); }
I declare the iterator and collection as variable in my class, and assign them each iteration, but iterating over the collection is very slow. This is a real time application so need to iterate at least 25x per second.
Looking at the profiler I see that there is a new instance of the iterator being created every update.
I was thinking of two ways of possibly changing the hashmap to possibly fix my problems. 1. cache the iterator somehow although i'm not sure if that's possible. 2. possibly changing the return type of hashmap.values() to return a list instead of a collection 3. use a different data structure but I don't know what I could use.
entrySetrather thanvalues. Have you tried using one of theFastMapimplementations? Overall needing to iterate that much seems like an issue itself. – Matt Whipple Oct 29 '12 at 4:48HashMap<Class<?>, HashMap<Integer, Object>> myMap;I am not sure how to model that relationship with lists, i've tried tuples and a whole range of other data structures but maybe I am over engineering it because I've yet to come up with a reasonable solution. – user1610950 Oct 29 '12 at 14:08