Global Data

2008-08-12 Thread Harold J. Ship
I'm in the middle of porting an application from IIS/Windows to Apache 2.2 module. In the application, there is a lot of global data. The data contains both: - application configuration that is read on startup and on receiving a certain HTTP request to reload - per-request data that is shared b

Re: Global Data

2008-08-12 Thread Ray Morris
> I'm in the middle of porting an application from > IIS/Windows to Apache 2.2 module. In the application, > there is a lot of global data. ... Unfortunately there's no magic technique for sharing data between processes in Apache - you just have to use the same inter-process communication

Re: Global Data

2008-08-12 Thread Sorin Manolache
On Tue, Aug 12, 2008 at 20:50, Harold J. Ship <[EMAIL PROTECTED]> wrote: > I'm in the middle of porting an application from IIS/Windows to Apache 2.2 > module. In the application, there is a lot of global data. The data contains > both: > > - application configuration that is read on startup The