For a personal project I'm working on, I'd like to generate ids for objects on my website in the same style as sites like bit.ly and twitpic. Sending users to example.com/4gwv9k would let me get the item with id 9gwv9k. Is this simply a question of auto-incrementing on a base-36 scheme or is there some underlying, non-incrementing magic going on?

This is all being done in Rails, so any gem support would be welcome as well.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Here's an example on I did it in Sinatra.

https://github.com/chrisledet/shorty_url

link|improve this answer
feedback

You may use autoincrement integer translated to 62 based number (26 small letters + 26 cap letters + 10 digits)

link|improve this answer
Some suggestions on how to do this would be phenomenal. – MrOodles May 11 at 21:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.