in reply to mod_perl variable persistence across request and/or session

Hi,

I think the problem is that Apache fires up multiple threads so each thread has its own copy of the variable every request the variable gets updated but in a different threads if you refresh enough you'll see the variable updated. Another caveat is that every X request Apache terminate the thread and fires a new one so the variables will be lost.

My advice is to use some sort of storage to save the state.

  • Comment on Re: mod_perl variable persistence across request and/or session