A/B Testing
What is A/B Testing and why would we want to implement it?
Solution
sub vcl_recv {
if (req.url ~ "^/carrito"){
set req.http.abtesting = "A";
if (req.http.True-Client-IP ~ "[0-2]$") {
set req.http.abtesting = "B";
}
set req.http.X-Vary-TCDN = req.http.X-Vary-TCDN + ",abtest:" + req.http.abtesting;
}
}Last updated
Was this helpful?
