Any thoughts on A/B testing in Django based project?

Posted by Maddy on Stack Overflow See other posts from Stack Overflow or by Maddy
Published on 2009-04-15T17:50:30Z Indexed on 2010/05/20 11:30 UTC
Read the original article Hit count: 291

We just now started doing the A/B testing for our Django based project. Can I get some information on best practices or useful insights about this A/B testing.

Ideally each new testing page will be differentiated with a single parameter(just like Gmail). mysite.com/?ui=2 should give a different page. So for every view I need to write a decorator to load different templates based on the 'ui' parameter value. And I dont want to hard code any template names in decorators. So how would urls.py url pattern will be?

© Stack Overflow or respective owner

Related posts about testing

Related posts about django