Composite Keys: A Guide on How to Handle Them

Programming Tech Brief By HackerNoon - A podcast by HackerNoon

Categories:

This story was originally published on HackerNoon at: https://hackernoon.com/composite-keys-a-guide-on-how-to-handle-them. How to best handle composite map keys in your code, and what offers the best performance Check more stories related to programming at: https://hackernoon.com/c/programming. You can also check exclusive content about #java, #performance, #memory-allocation, #cache, #composite-keys, #how-to-create-a-comp-key, #use-nested-maps, #hackernoon-top-story, #hackernoon-es, #hackernoon-hi, #hackernoon-zh, #hackernoon-fr, #hackernoon-bn, #hackernoon-ru, #hackernoon-vi, #hackernoon-pt, #hackernoon-ja, #hackernoon-de, #hackernoon-ko, #hackernoon-tr, and more. This story was written by: @kevinmasur. Learn more about this writer by checking @kevinmasur's about page, and for more stories, please visit hackernoon.com. Most of the time, just keep it simple. Combine your composite keys into a string key for storage in a map or cache if that is the easiest option and performance is not a major concern. In scenarios where performance is critical, make sure to do your own testing. But using nested maps will be the most performant in most cases. It will also likely have the smallest storage requirements. And composite keys are still a performant alternative when nesting mappings become impractical.