Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:47001 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 60796 invoked from network); 19 Feb 2010 16:27:36 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 19 Feb 2010 16:27:36 -0000 Authentication-Results: pb1.pair.com smtp.mail=hannes.magnusson@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=hannes.magnusson@gmail.com; sender-id=pass; domainkeys=bad Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.160.42 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: hannes.magnusson@gmail.com X-Host-Fingerprint: 209.85.160.42 mail-pw0-f42.google.com Received: from [209.85.160.42] ([209.85.160.42:48299] helo=mail-pw0-f42.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id BB/B1-57104-7FBBE7B4 for ; Fri, 19 Feb 2010 11:27:35 -0500 Received: by pwi10 with SMTP id 10so251326pwi.29 for ; Fri, 19 Feb 2010 08:27:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=cX5jukmEc69dK9gLUuk/mbL2TLcshtDs1914JowlPB8=; b=itBMVLZIgSOyFDezoXrAaSPtVNUr0p4bEMWg2x8zKfAugtsiWs7lwbIsX3lr15tTx9 HQ0g/ICndgneFKFabWwoWEK4xdskAZMin7tuWdqPGK/+ckRr6hIxZX2wUvMmLNdZHEWc eTGc1yDDPrYWsKLqkLyxrj7z22bQyN7s8mo3g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=uxrLoycj9K1q/QSC92soM87Kx8Sd5e07bOY4xUjHC7GPs5X1TSK7cVz9gqEcE0Xsxn NuYT3NPxK5dM4pABXwAw7bfzihWGFyOTn74bWC9boa0dNd3UG1m8ogRqVnr29161S6UG TMERdNRPPe70UyPlhfE4RmbZoeNSEQdD+aKeA= MIME-Version: 1.0 Received: by 10.142.150.41 with SMTP id x41mr360801wfd.306.1266596852896; Fri, 19 Feb 2010 08:27:32 -0800 (PST) In-Reply-To: <4B7EB41D.9060207@gmx.net> References: <4B7EB41D.9060207@gmx.net> Date: Fri, 19 Feb 2010 17:27:32 +0100 Message-ID: <7f3ed2c31002190827l136e25dfgb7336ad8668ca65b@mail.gmail.com> To: Christian Seiler Cc: php-dev List , pecl-dev@lists.php.net Content-Type: text/plain; charset=ISO-8859-1 Subject: Re: [PHP-DEV] Execution point of session save handler on shutdown From: hannes.magnusson@gmail.com (Hannes Magnusson) On Fri, Feb 19, 2010 at 16:54, Christian Seiler wrote: > Hello, > > [CC to pecl-dev since this is APC-related.] > > I have been investigating a problem occuring when using APC in > combination with userspace session save handlers. This has been reported > multiple times both in the APC and PHP bugtrackers, bugs related to this > issue include (but are most likely not limited to): This has been documented feature for several years. You should explicitly call session_write_close() when your custom session handler is a userspace object. -Hannes