in reply to How to keep network connection persistent during session?
You simply can't serialize a network connection, and store it on disk. It's something which a program has to negotiate with the operating system, and something that each program has to do anew.
If you use something like mod_perl or FastCGI, you can have one process that handles multiple HTTP requests. In that case you can have one socket per process, not just per request. Something like that is probably your best bet.
|
|---|