How many HTTP request can access IRules?
How many HTTP request can access IRules? If more than 1 HTTP request
can access a set of IRules associated with a VS, then do they have their own set of variables or do they share a static variable? ".... own set of variables..." meaning each HTTP request variable X can be any value at any point in time. "... share a static variable..." meaning each HTTP request will share 1 variable X value and if it changes then it changes for ALL.
ex) If 2 HTTP request access IRules at the same time and manipulates X variable.
1) HTTP Request 1 changes variable X to "1" in HTTP REQUEST EVENT.
2) Then HTTP Request 2 changes variable X to "2" in HTTP REQUEST EVENT.
3) HTTP Request 2 uses variable X in the HTTP RESPONSE EVENT.
Is HTTP Request 2 variable X equal to "1" or "2"?
Thanks in advance.
TRX