Exclude Random Redirect from caching?

Use jQuery or Javascript to cycle through and randomly pick one of your links, this way you can bypass the caching? var messages = [“Good!”, “Great!”, “Awesome!”, “Super!”, “Nice!”]; function getMessage() { return messages[Math.floor(Math.random() * messages.length)]; } From https://stackoverflow.com/questions/3419928/how-can-i-return-a-random-value-from-an-array

Load-Testing a WordPress Site

I don’t think there is any WordPress specific solution, but I personally use blitz.io to do the load testing for our solutions. Actually you could also use one of the usual (free) tools (like Apache bench), but then you’ll have to consider a lot of other variables to make sure that you really create real-world-numbers … Read more

What will be the best caching system for wordpress blog which has more than one million blog posts? [closed]

I would suggest using nginx along with varnish. Varnish is a caching mechanism which runs on top of Apache/nginx. You can configure it to purge the cache after a specific time if you have users updating content often. In terms of server configuration, I would recommend Amazon Web Services’ EC2. This will allow you to … Read more