show/hide this revision's text 3 edited tags
show/hide this revision's text 2 Adding more info, based on the first response

Hey,

I am working on a project that involves a url shortener "forwarder" (like bit.ly or tinyurl.com)tinyurl.com, but we don't really need it to be short).

For that, I need to "generate" alphanumeric strings (I explicitly want alphanumeric) to map to each url. One of the options would be generate a random string and store it somewhere. However, I'd like to avoid using a database since we don't use any in our app. I want to actually "encode" the url so that it can be decoded later.

Any tips on how to do that?

show/hide this revision's text 1

Crypto in Ruby and Alphanumeric

Hey,

I am working on a project that involves a url shortener (like bit.ly or tinyurl.com).

For that, I need to "generate" alphanumeric strings (I explicitly want alphanumeric) to map to each url. One of the options would be generate a random string and store it somewhere. However, I'd like to avoid using a database since we don't use any in our app. I want to actually "encode" the url so that it can be decoded later.

Any tips on how to do that?