Ask HN: How to split traffic in A/B testing?
I've been reading up a lot on A/B testing lately on HN. Since sequential A/B testing is not recommended due to external factors, I'm just curious as to how someone is suppose to split web traffic (say 50/50 without using hardware to balance).
4 comments
[ 6.3 ms ] story [ 15.8 ms ] threadMaybe someone has already built a framework for you to use?
I personally used ABingo for Ruby on Rails (http://www.bingocardcreator.com/abingo), Visual Website Optimizer (http://visualwebsiteoptimizer.com) and Google Website Optimizer (http://www.google.com/websiteoptimizer) for any technology.
The advantage of running a technology specific tool is mainly because of performance. Most technology-agnostic tools execute a javascript on your page to be able to execute the A/B testing logic where ABingo for example is executed on the server side (no additional http request)
What generic tools give you though is the ability to change your tests without changing your code.