I am writing and testing an a/b test library. I am splitting visitors between variations using a Math.Random(...) call.
However, this isn't working well. I've had over 20% difference in displays on variationA vs variationB.
Does anyone know a better option to do this, other than comparing the displays and, if difference is larger than X%, to decide on showing the other variation without calling Math.Random?