Re: [PHP-DEV] Memcache session handler

2006-10-20 Thread Glenn Richmond
Hi Andreas, Thanks for the suggestion - looks like a nice way to separate it from the main source tree. I'll look at this as an option also :) I think the one nice thing of integrating with the PECL memcache project would be re-using the memcache library backend, but will see how we go. Regards,

Re: [PHP-DEV] Memcache session handler

2006-10-20 Thread Andreas Korthaus
Hi Glenn, Glenn Richmond wrote: This isn't actually part of the PECL project as I understand it. The PECL memcache project provides a PHP interface to using a memcache server. What I've developed is a memcache session handler that can be used via the php.ini file by: session.handler = memcache

Re: [PHP-DEV] Memcache session handler

2006-10-20 Thread Glenn Richmond
ok, sure - I just made this assumption because there's an sqlite session handler in there (from what I can see) that I wouldn't have considered standard. I'll discuss with the PECL developers. Glenn. Antony Dovgal wrote: > On 10/20/2006 12:49 PM, Glenn Richmond wrote: >> Hi Antony, >> >> This isn

Re: [PHP-DEV] Memcache session handler

2006-10-20 Thread Antony Dovgal
On 10/20/2006 12:49 PM, Glenn Richmond wrote: Hi Antony, This isn't actually part of the PECL project as I understand it. The PECL memcache project provides a PHP interface to using a memcache server. What I've developed is a memcache session handler that can be used via the php.ini file by:

Re: [PHP-DEV] Memcache session handler

2006-10-20 Thread Glenn Richmond
Hi Antony, This isn't actually part of the PECL project as I understand it. The PECL memcache project provides a PHP interface to using a memcache server. What I've developed is a memcache session handler that can be used via the php.ini file by: session.handler = memcache As such, it's somethi

Re: [PHP-DEV] Memcache session handler

2006-10-20 Thread Antony Dovgal
On 10/20/2006 08:35 AM, Glenn Richmond wrote: Hi all, I've just been implementing a memcache session handler that allows for multiple servers in a cluster to store their session data in a central place. I had to make the changes in the PHP source as the user session handler doesn't quite work pr

[PHP-DEV] Memcache session handler

2006-10-19 Thread Glenn Richmond
Hi all, I've just been implementing a memcache session handler that allows for multiple servers in a cluster to store their session data in a central place. I had to make the changes in the PHP source as the user session handler doesn't quite work properly (it wipes the references to the PHP funct