In standard A/B testing, we can use the parity of the ip adresse to distribute the client to A or B testing page.

My question is how to distribute when we need 3 case: A/B/C. If someone know to code or has already coded this for asp.net in c#, I will be happy to know !

Sinn'

link|improve this question

71% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Convert the ip to long, and then just make a module divide

    switch(addrToNum("ip address")%3)
    {
        case 0:
            break;
        case 1:
            break;
        case 2:
            break;
    }

and here is the convertion of the ip to number

    public long addrToNum(IPAddress Address)
    {
        byte[] b = BitConverter.GetBytes(Address.Address);

        if (b.Length == 8)
            return (long)(((long)16777216 * b[0]) + ((long)(65536 * b[1])) + ((long)(256 * b[2])) + b[3]);
        else
            return 0;
    }
link|improve this answer
Thanks, I will review this. – sinner73 Feb 2 '11 at 15:56
@sinner73 this is work for sure. Please check it as answer if you like it and upvote it if you can. – Aristos Feb 3 '11 at 12:28
I confirm it works, the distribution is quite equal – sinner73 Mar 11 '11 at 9:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.