Ask Ben: Redirecting Users To A Random Page

Posted October 28, 2008 at 10:19 AM

Tags: Ask Ben, ColdFusion

I am using cflocation to redirect all users to a temporary page. What I am wondering is if there is a way to have cflocation randomly or, even better, non-sequentially choose from a list of temporary pages to redirect users to. Is this possible?

This is actually a really easy task. ColdFusion provides very accessible randomization methods that we can leverage to get this done. What I'm gonna do it just put the list of temporary pages into an array and let ColdFusion randomly select from that array:

 Launch code in new window » Download code as text file »

  • <!--- Create an array of URLs to which we are redirecting. --->
  • <cfset arrPages = ArrayNew( 1 ) />
  •  
  • <!--- Add the temporary pages to the array. --->
  • <cfset ArrayAppend( arrPages, "./temp/one.cfm" ) />
  • <cfset ArrayAppend( arrPages, "./temp/two.cfm" ) />
  • <cfset ArrayAppend( arrPages, "./temp/three.cfm" ) />
  • <cfset ArrayAppend( arrPages, "./temp/four.cfm" ) />
  •  
  •  
  • <!---
  • Because we are using this as a "Temporary Page", we can
  • use a standard CFLOcation tag. If we wanted this to be more
  • permanent, I would recomment using the CFHeader tag to
  • provide the propery status code (or CFLocation if you are
  • using CF8).
  •  
  • Let ColdFusion select a random page using RandRange() and the
  • size of the pages array.
  • --->
  • <cflocation
  • url="#arrPages[ RandRange( 1, ArrayLen( arrPages ) ) ]#"
  • addtoken="false"
  • />

Because the URL selection uses the actual array of pages to determine the random number assignment, you can update the array and it will automatically update the random redirects. RandRange() takes a lower and upper number range and will select a random integer from the range with the two ends inclusive.

I hope that helps.

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Permalink  |  Other Searches  |  Print Page



Learning ColdFusion 9 - ColdFusion 9 tutorials, samples, examples, demos

Reader Comments

Oct 28, 2008 at 12:21 PM // reply »
5 Comments

Why would you want to redirect users to a random page??


Oct 28, 2008 at 12:23 PM // reply »
5,406 Comments

@Christopher,

I only answer the questions - I don't know why they're asked.


Oct 28, 2008 at 3:14 PM // reply »
123 Comments

@Christopher and Ben

It's not a totally unusual request in community sites. When you have thousands or millions of members, it's quite a cool feature to randomly be redirected to a random user page or submission to learn about users you wouldn't normally encounter.

deviantART for instance has Random Deviation (submission) and Random Deviant (user).

http://www.deviantart.com/random/deviant
http://www.deviantart.com/random/deviation

Of course Ben's example wouldn't scale for them since they have 2 million accounts and millions of submissions. Instead you'd need to generate a random number (or several) and select from the database the record with that id. By generating several record ids randomly you can avoid selecting a deleted row because the probability goes down dramatically.

In code:

<cfset user = queryNew("username")>
<cfloop condition="#not user.recordCount#">
<cfset numbers = RandomArray(10)>
<cfquery name="user">
select top 1 username
from users
where id in (<cfqueryparam value="#arrayToList(numbers)#" list="true">)
</cfquery>
</cfloop>

We can then cflocation like in Ben's code:

<cflocation url="http://#user.username#.riaforge.org" addtoken="false">

There is a possibility of an infinite loop in there, but the probability of never hitting a single record that's not deleted is so rare I doubt we'll ever come across that. You could add a check that if that loop ran N number of times to bail out too, if you were worried.

If hitting the database turns into a bottleneck, then cache a large number of random records (ex. 200), and select from them randomly without ever selecting duplicates, and that appears "random" to users, since most probably never hit it 200 times in a day. Getting clever you can avoid that issue too.


Oct 28, 2008 at 3:20 PM // reply »
88 Comments

Or hit the dB up for a random row and don't worry about getting back a deleted row

http://www.petefreitag.com/item/466.cfm


Oct 28, 2008 at 3:22 PM // reply »
5,406 Comments

@Elliott,

Good use case, thanks.


Oct 28, 2008 at 3:41 PM // reply »
5 Comments

I second Ben's "thanks". I've spent so much of my time working on boring (and lucrative) business/gov. apps that I couldn't think of a case where I'd want to apply randomness...other than the obvious "delete a random user" button that I just added to a system that I'm working on now ;)


Oct 28, 2008 at 3:48 PM // reply »
5,406 Comments

>delete a random user

Ha ha ha :) I try to make that an implicit part of my systems - that way it takes the thinking out of it for my users.


Oct 28, 2008 at 10:33 PM // reply »
123 Comments

@Gareth

If you read through the comments on that page you can see the various suggested methods don't scale well at all because they require generating random numbers for every row in the table.

If you have 62 million rows, that's no good.

Generating a finite key set and checking against that is O(k) where k is the key set size. This is constant. The index scan in the database is probably O(klog(n)). Since we never generate n keys (that'd be silly since it'd end up the same as the RAND() solution, we get O(klog(n)) type performance, which scales very well on large, partitioned, clustered indexed databases. Worst case we might have to do n key set generations, but honestly, that case is so rare...

On the other hand, the RAND() solution is always O(n) since it needs to generate that random number for every row in the database. Then we end up doing a O(nlog(n)) sort of the records in memory. So we end up with O(nlog(n)) as the runtime, worse though, is the fact that both the sort and the RAND() totally defeats the clustering and the indexing since we scan the entire table. :(

In any case, I suppose the right answer is "it depends". If your application is sufficiently modular you could refactor it later to handle the larger database by simply rewriting that one method.


Oct 28, 2008 at 11:13 PM // reply »
88 Comments

@Elliott,
Weird. I've used the SQL "NEWID()" on a table with a couple of million rows and did not have an issue with the data return. It seemed to chug along nicely. I guess if it was being hit with regularity (being on the front page for example), then it may bog the server down, but I hadn't had the issue when I ran it. I'll take your word for it as your knowledge seems to be O(K) on the subject :)


Oct 29, 2008 at 2:29 AM // reply »
123 Comments

@Gareth

Haha, fair enough. I've not benchmarked it, so outside the theory I'm not quite sure what the exact metrics are.

That'd certainly be something fun to look at.

Thanks!


Post Comment  |  Ask Ben

Recent Blog Comments
Jason Fisher
Jul 4, 2009 at 4:35 PM
Adobe Announces That HomeSite Is Officially Dead
I'm with Mark and Tim: still the best IDE for CF, especially for those of us with years of customization which can so easily be moved from machine to machine. I just have trouble making the Eclipse ... read »
Secret Admirer
Jul 4, 2009 at 12:23 PM
Project HUGE: Huge In A Hurry - Get Big - Phase 2 / Week 3
My Poor Dreamboat :( I feel so sad when I know you are hurting. I hope you feel better soon. ... read »
Jul 4, 2009 at 9:42 AM
FLV 404 Error On Windows 2003 Server
I bookmarked this page. Thanks for given this great post.... ... read »
Jul 4, 2009 at 4:00 AM
Terms Of Service / Privacy Policy Document Generator
thanks ben, I'm not a big fan of contracts so to find your no no-nesense ToS generator has helped me no end. all the best matt ... read »
Justice
Jul 3, 2009 at 11:10 PM
Create A Running Average Without Storing Individual Values
@Ben, I think you're going about this the wrong way. You're trying to use complicated techniques when there is a simple and beautiful technique readily available (a la Gary Funk's comment). Instead ... read »
Bob
Jul 3, 2009 at 9:19 PM
Project HUGE: Huge In A Hurry - Get Big - Phase 3 / Week 1
a good technical explanation http://crossfitphoenix.typepad.com/crossfit_phoenix_forging_/the-overhead-squat.html ... read »
Jul 3, 2009 at 9:03 PM
Create A Running Average Without Storing Individual Values
If I wanted to do this and only carry two numbers, I'd keep track of the sum and N. Then you are pretty much accurate all the time. average = (sum + new_number) / (N + 1) But all this was in a for ... read »
Roland Collins
Jul 3, 2009 at 8:58 PM
Create A Running Average Without Storing Individual Values
@Martin - not just floating point though. Depending on what langauge you're working in, decimals can cause just as many headaches if they're not precise enough. But again, for most applications, th ... read »