in reply to Concurrent access to temporary and persistant storage
Personally I would use threads for this, but if that is a problem, then you might take a look at the forks module.
It is an emulation of threads and includes an emulation of the threads::shared functionality using sockets.
I've no idea if this would play well with the forking you already have, but if not, you might be able to steal the sockets implementation it uses to allow processes to share hashes and arrays. Most of the relevant code is in forks::shared module I think.
I thought it was worth a mention anyway.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Concurrent access to temporary and persistant storage
by Anonymous Monk on Jun 03, 2003 at 22:31 UTC | |
by BrowserUk (Patriarch) on Jun 04, 2003 at 00:42 UTC |