in reply to Threads/processes under Apache
...there are several fork/exec pairs. ... Is there anything I should be wary of?
Yes.
Forks on Win32 are emulated as threads, and to date the implementation is a bit unreliable. I'd suggest looking into using Win32::Process as an alternative.
Or possibly using Win32::Daemon, if your architecture is going to need the shakeup I think it will (As previously pointed out wrt Apache, your architecture will need some serious tweaking to do what you're attempting)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Threads/processes under Apache
by pmcaveman (Novice) on Dec 02, 2006 at 01:57 UTC | |
by perrin (Chancellor) on Dec 02, 2006 at 17:42 UTC |