in reply to Re^2: How to keep an object between HTTP requests?
in thread How to keep an object between HTTP requests?
It's easily possible to keep objects persistent per Apache process using mod_perl. If you need finer grained resolution, like for example per-user or per-session, then looking into one of the Session modules is worth it. Not every session module can handle large objects, as not all of them employ Storable to persist your large objects.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: How to keep an object between HTTP requests?
by kornerr (Novice) on Feb 15, 2010 at 09:59 UTC | |
by Herkum (Parson) on Feb 15, 2010 at 18:12 UTC | |
by Corion (Patriarch) on Feb 15, 2010 at 10:02 UTC | |
by kornerr (Novice) on Feb 15, 2010 at 10:06 UTC | |
by Corion (Patriarch) on Feb 15, 2010 at 10:11 UTC | |
|
Re^4: How to keep an object between HTTP requests?
by bart (Canon) on Feb 16, 2010 at 15:39 UTC |