Re: Sharing readonly data between processes

2005-01-09 Thread Tom Schindl
Thanks Perrin your answers are as I suspected. Tom Perrin Harkins wrote: Tom Schindl wrote: Loading/Parsing the XML before Apache forks its children and not modifying the data from this point on all apache/mp children will share the same data and it would not be copyied to each of them, copying

Re: Sharing readonly data between processes

2005-01-09 Thread Perrin Harkins
Tom Schindl wrote: Loading/Parsing the XML before Apache forks its children and not modifying the data from this point on all apache/mp children will share the same data and it would not be copyied to each of them, copying only takes place when the data is modified. Is this true or have I got s

Sharing readonly data between processes

2005-01-09 Thread Tom Schindl
Hi, I'm supporting a request on howto solve a memory problem with a farily huge XML-Document parsed using XML::LibXML and not sure whether I'm telling the truth when saying: 1. Loading/Parsing the XML before Apache forks its children and not modifying the data from this point on all apache/mp c