Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6723545
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T09:34:56+00:00 2026-05-26T09:34:56+00:00

Which is better between using long string key or short string key in HashMap?

  • 0

Which is better between using long string key or short string key in HashMap?

Example:

1. Long string key in HashMap

    HashMap<String, String> map = new HashMap<String, String>();
    map.put("[ART.117.4002] ADAPTER RUNTIME (ADAPTER SERVICE): UNABLE TO INVOKE ADAPTER SERVICE", "Cannot invoke adapter service");

Note: the long string would be limited to maximum 120 chars and all is uppercased. If the length is more than the max. chars, it will be truncated.

2. Short string key in HashMap

    HashMap<String, String> map = new HashMap<String, String>();
    map.put("B8B77715", "Cannot invoke adapter service");

Note: the B8B77715 is a CRC32 of "[ART.117.4002] ADAPTER RUNTIME (ADAPTER SERVICE): UNABLE TO INVOKE ADAPTER SERVICE".

Let’s say there would be 4000+ entries in the HashMap. Which is better between two in term of performance?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T09:34:56+00:00Added an answer on May 26, 2026 at 9:34 am

    A CRC32 is a rough approximation of your original value, but it will be possible for two different original values to result in the same CRC32 value. This makes them a very poor candidate for a key to a HashMap and the fact it reduces data integrity should trump any potential performance concerns. Definitely use [ART.117.4002] ... — why introduce a potential (if rare) bug when you don’t need to?

    That being said, the part in the beginning (between the square brackets) looks like it has the potential for being a unique identifier. If that were so, you could see some (quite marginal) performance boosts by using just the token between the brackets (via string parsing) rather than that whole big string.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Are there any differences between the two for using with PHP? Which is better
Between interfaces and enums, which is better for declaring constants? Why is it so?
Between Yahoo! UI Compressor , Dean Edwards Packer and jsmin , which produces better
Between HtmlSelect and DropDownList, which one has a better performance (initialized and rendered faster)?
Which is better in general in terms of the ordering? Do you put the
Is there a perceptible difference between using String.format and String concatenation in Java? I
first thing I want to know in between two algorithms which one is better
Possible Duplicate: SQL JOIN: is there a difference between USING, ON or WHERE? Which
Which is better? Or use and OR mapper with SP's? If you have a
Which is better to use in PHP, a 2D array or a class? I've

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.