in reply to [mod_perl] when does it keep data in memory?
That's not your only problem. Even if you manage to keep the data in memory, you can't gurantee (in fact, on a busy server the chances are pretty slim) that the next request will hit the same server. So you'll have the data in memory, but in another process, as out of reach as if you had it on the other side of the moon.
Perhaps you'd be better of saving it in a database, a DB_File, or even a text file...
|
---|