A/B/n测试,如何分发网站客户端?
在标准的A/B测试中,我们可以使用ip地址的奇偶校验将客户端分配到A或B测试页面。
我的问题是当我们需要 3 种情况时如何分配:A/B/C。 如果有人知道编码或已经用 C# 为 ASP.NET 编码过,我会很高兴知道!
辛恩
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'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将ip转换为long,然后进行模除
,这里是将ip转换为number
Convert the ip to long, and then just make a module divide
and here is the convertion of the ip to number