Once I've asked about : how does apparently random query string/urls are being generated.
It can be found in many places :
http://www.youtube.com/watch?v=IMl7pvaWzh8
^
|
+----------------
http://jsfiddle.net/xeolabs/LSTKM/light/
^
|
+----------------
http://jsbin.com/asapay/1/edit
^
|
+----------------
I was told ( and it seems logic) that when the server pick a new url , it doesnt check if it is free ( wasn't chosen before)
Also , I was told it can be result of a formula such as: f(n+1) = f(n)+1
( so it is not random at all.
so the new url param is generated as a result of the last generated url param.
my Question :
where can I found such generators functions ?
of course I can build one of my own such 17=16+1 but i'm looking something ready like :
f(n+1) = f(n)+1
where there is a usages of uppercase , lower case , numbers. and
of course minimum collisions and zero predictions.
you know , something professional...
I'm just curious how google/youtube/jsbin/jsfiddle does it with a millions of requests a day.