I need a Map to make a cache in Java for same values that I have two String keys. My question it's better to make nested Maps (one for each key) or make some type of custom key maked with the two Strings?
Access to data on cache will all time accessed with the two keys and I don't need group it by any of that two keys.
Then if is better combine string key in only one what it's better?
- Custom class with custom
getHashmethod. But then the problem is what hash function implement? Simply concatenate two strings together. For example:
cache.put(key1+key2, value)