Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:26111 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 93017 invoked by uid 1010); 20 Oct 2006 08:50:05 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 93001 invoked from network); 20 Oct 2006 08:50:05 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 20 Oct 2006 08:50:05 -0000 Authentication-Results: pb1.pair.com smtp.mail=glenn.richmond@ilisys.com.au; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=glenn.richmond@ilisys.com.au; sender-id=unknown Received-SPF: error (pb1.pair.com: domain ilisys.com.au from 203.202.10.105 cause and error) X-PHP-List-Original-Sender: glenn.richmond@ilisys.com.au X-Host-Fingerprint: 203.202.10.105 mail2.ilisys.com.au Linux 2.4/2.6 Received: from [203.202.10.105] ([203.202.10.105:49883] helo=mail2.ilisys.com.au) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 87/C9-27040-9BD88354 for ; Fri, 20 Oct 2006 04:50:04 -0400 Received: (qmail 13759 invoked from network); 20 Oct 2006 18:49:57 +1000 Received: from unknown (HELO ?127.0.0.1?) (203.202.11.226) by mail2.ilisys.com.au with SMTP; 20 Oct 2006 18:49:57 +1000 Message-ID: <45388DB3.5050508@ilisys.com.au> Date: Fri, 20 Oct 2006 16:49:55 +0800 User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: Antony Dovgal CC: internals@lists.php.net References: <45385201.7020001@ilisys.com.au> <45388B4B.8000001@zend.com> In-Reply-To: <45388B4B.8000001@zend.com> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] Memcache session handler From: glenn.richmond@ilisys.com.au (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 something that could (or perhaps should) be part of the main source tree. Is there a middle stage here? i.e. Can I provide it as an optional compile flag in the configure script? Glenn. Antony Dovgal wrote: > 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 properly (it wipes the references to the PHP >> functions when session_write_close is called). Anyway, so it's all >> working quite well (still undergoing testing) and it works with a main >> memcache server and a backup as a failover. I'd like to check the code >> back into the source tree if it's something that might be of use to the >> general community and am told that this is the list to discuss this? >> >> So a couple of queries: >> >> * Is this something worth checking back into the main source tree? >> * How do I get registered as a developer or can I provide it as a >> .diff to an existing developer? > > I guess you need to contact current PECL/memcache developers. >