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

  • Home
  • SEARCH
  • 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 7578703
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T17:29:39+00:00 2026-05-30T17:29:39+00:00

Need to handle > 1000 but < 10000 new records per day Cannot use

  • 0
  • Need to handle > 1000 but < 10000 new records per day

  • Cannot use GUID/UUIDs, auto increment numbers etc.

  • Ideally should be 5 or 6 chars long, can be alpha of course

  • Would like to reuse existing, well-known algos, if available

Anything out there ?

  • 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-30T17:29:40+00:00Added an answer on May 30, 2026 at 5:29 pm

    Base 62 is used by tinyurl and bit.ly for the abbreviated URLs. It’s a well-understood method for creating “unique”, human-readable IDs. Of course you will have to store the created IDs and check for duplicates on creation to ensure uniqueness. (See code at bottom of answer)

    Base 62 uniqueness metrics

    5 chars in base 62 will give you 62^5 unique IDs = 916,132,832 (~1 billion)
    At 10k IDs per day you will be ok for 91k+ days

    6 chars in base 62 will give you 62^6 unique IDs = 56,800,235,584 (56+ billion)
    At 10k IDs per day you will be ok for 5+ million days

    Base 36 uniqueness metrics

    6 chars will give you 36^6 unique IDs = 2,176,782,336 (2+ billion)

    7 chars will give you 36^7 unique IDs = 78,364,164,096 (78+ billion)

    Code:

    public void TestRandomIdGenerator()
    {
        // create five IDs of six, base 62 characters
        for (int i=0; i<5; i++) Console.WriteLine(RandomIdGenerator.GetBase62(6));
    
        // create five IDs of eight base 36 characters
        for (int i=0; i<5; i++) Console.WriteLine(RandomIdGenerator.GetBase36(8));
    }
    
    public static class RandomIdGenerator 
    {
        private static char[] _base62chars = 
            "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
            .ToCharArray();
    
        private static Random _random = new Random();
    
        public static string GetBase62(int length) 
        {
            var sb = new StringBuilder(length);
    
            for (int i=0; i<length; i++) 
                sb.Append(_base62chars[_random.Next(62)]);
    
            return sb.ToString();
        }       
    
        public static string GetBase36(int length) 
        {
            var sb = new StringBuilder(length);
    
            for (int i=0; i<length; i++) 
                sb.Append(_base62chars[_random.Next(36)]);
    
            return sb.ToString();
        }
    }
    

    Output:

    z5KyMg
    wd4SUp
    uSzQtH
    UPrGAT
    UIf2IS
    
    QCF9GNM5
    0UV3TFSS
    3MG91VKP
    7NTRF10T
    AJK3AJU7
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to handle strings in my php script using regular expressions. But there
I need a c# number something that can handle very large numbers but also
For a project I need to handle audio in an iPhone app quite special
I'm using IIS7 and ASP.NET. Basically building a simple CMS and need to handle
I am writing a search engine (why not hey?) and need to handle navigating
I have a jQuery grid with data with user data. I need to handle
I am developing 2D game for iPhone, for that I need to handle collision
I am writing some Ruby code, not Rails, and I need to handle something
I need a library to handle JSON objects in Ruby. There are two gems
I need to create a class to handle audio AudioTrack. In this class must

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.