I'm looking for a simple way to store a counter in the server memory to allow page load selection, kind of (pseudocode):
if counter is odd then load page-x
else (even counter) load page-y
increment counter by 1
store counter in server's memory
Session variables would not help, among multiple users.
I understand this could be achieved storing a field into the database, but this seems a cloggy approach. Was wondering for something faster.
That's why I thought about some server side variables that are kept in memory across sessions....