When I launch my site in hosted mode all variables that are declared as static preserves it's values among different requests. It works fine(?) when I upload it to google app servers.
I.e.
I have public static String action = "index";
and if I set its value to "someval" in another request it appears "someval" instead of "index".
Is it supposed to be so? Where could I search for this problem solution?