Re: [PHP-DEV] Sharing hashes between processes

2001-07-12 Thread Wez Furlong
On 12/07/01, "Derick Rethans" <[EMAIL PROTECTED]> wrote: > AFAIK, it's like the MySQL pconnect way. There is no way to share data > between processes (only with shared memory or diskstorage). I thought for a moment that if the data was read on httpd startup, the pointer could be kept around and u

Re: [PHP-DEV] Sharing hashes between processes

2001-07-12 Thread Derick Rethans
Hello Wez, On Thu, 12 Jul 2001, Wez Furlong wrote: > Hey, > > Suppose that I wanted to make a hash persistent so that it's contents were > shared between processes. Does the persistence mechanism keep a single copy > and protect access to it using semaphores, or is it more like the mySQL > pcon

[PHP-DEV] Sharing hashes between processes

2001-07-12 Thread Wez Furlong
Hey, Suppose that I wanted to make a hash persistent so that it's contents were shared between processes. Does the persistence mechanism keep a single copy and protect access to it using semaphores, or is it more like the mySQL pconnect way where a currently idle connection is used instead? Wha