In most cases, there will be only 0-5 parameters in the map. I guess TreeMap might have a smaller footprint, because it's less sparse then HashMap. But I'm not sure.
Or, maybe it's even better to write my own Map in such case?
|
In most cases, there will be only 0-5 parameters in the map. I guess TreeMap might have a smaller footprint, because it's less sparse then HashMap. But I'm not sure. Or, maybe it's even better to write my own Map in such case? |
|||
|
|
That may actually be wrong, because empty In any case, it's only a concern if you have hundreds of thousands of such maps. |
|||
|
|
|
The main difference is that I would not recommend you write your own map unless you need functionality which is not available from the standard Maps, which it sounds like you don't. |
||||
|
|
|
I guess you don't need order of entries in And 5 entries are not performance concern. You need to write |
||||
|
|
|
If your about 5 keys are always the same (or part of a small set of keys), and you are usually querying them by string literals anyway, and you only seldom have to really parse the keys from user input or similar, then you may think about using an enum type as key type of a EnumMap. This should be even more efficient than a HashMap. The difference will only matter if you have many of these maps, though. |
|||
|
|