What I need is a collection which allows multiple keys to access a single object.
I need to apply frequent alterations to this object.
It also must be efficient for 500k+ entries.
|
What I need is a collection which allows multiple keys to access a single object. I need to apply frequent alterations to this object. It also must be efficient for 500k+ entries. |
|||||
|
|
Any implementation of
If you want a map where a single key is associated with multiple values, this is called a multi-map and you can get one from the google java collections API or from Apache's commons-collections |
|||||
|
|
Uhm…
Now the map contains the same value twice, accessible via different keys. If that’s not what you’re looking for you should rework your question. :) |
|||
|
|
|
this may do what you want:
|
|||
|
|
|
I sort of interpreted his request differently. What if one wants two completely different keysets to access the same underlying values. For example:
Obviously having two maps, one for the integer keys and one for the String keys, isn't going to work, since an update in one map won't reflect in the other map. Supposing you modified the
what you'd get in reality would be this:
what I do in this situation is to have the two side by side maps, but instead of making them say
|
||||
|