I'm building a new web app that has a requirement to generate an internal short URL to be used in the future for users to easily get back to a specific page which has a very long URL. My initial thoughts are to store a number in a database and output it in a HEXADECIMAL value to keep it shorter than an integer. TinyURL.com seems to use something other than HEXADECIMAL (multiple case letters mixed with numbers). Is there an easy way to generate something similar what TinyURL does?
|
|
Please, check out this good explanation on subject: Random TinyURL Browser (Updated) . Important part:
BTW, another SO similar question, through a mathematical view : Creating your own Tinyurl style uid. And here some .NET source code: Base 36 type for .NET (C#) |
||||
|
|
|
They use base 36 encoding, and you can make your app more robust by using base 64. Here's what I'd try in Python (I do see your language tags, forgive me):
Outputs:
So you can autoincrement an integer and feed it to some kind of function like this, and end up with a good chance of a random group of strings. See also my answer to this question. Some base64 implementations have the potential to emit a slash Hashes are really flexible and prevent your users from guessing the next URL (if this is important to you). |
|||
|
|
|
I recently saw something like this on codeplex for sharepoint and they seemed to use hexadecimal numbers for the url shortener. It might be worth taking a look at how they do it here http://spurlshortener.codeplex.com/ |
|||
|
|
What is the point of keeping something shorter than an integer? If you'll ask me which one is easier for me I'll tell the latter one.
Yes. Ask the user to provide it. |
|||
|
|