Helena_101649
Jun 26, 2012Nimbostratus
Cookie persistence profile and iRule question
Hello,
I have a Virtual Server with a default pool and a cookie persistence profile, method Cookie insert. I have also an iRule for the Virtual Server, which load balance to the default pool if some URIs are matched and to another pool it there's no match:
when HTTP_REQUEST {
switch -glob [HTTP::path] {
"/xxx/*" {
pool pool_default
}
"/yyy/*" {
pool pool_default
}
default {
pool pool_other
}
}
}
My question is: ¿Is the persitence profile used for all the pools or just for the default pool specified in the VS configuration?
Thank's a lot.