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
> 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
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