Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:46158 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 92243 invoked from network); 22 Nov 2009 05:20:29 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 22 Nov 2009 05:20:29 -0000 Authentication-Results: pb1.pair.com smtp.mail=mike503@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=mike503@gmail.com; sender-id=pass; domainkeys=bad Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.222.176 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: mike503@gmail.com X-Host-Fingerprint: 209.85.222.176 mail-pz0-f176.google.com Received: from [209.85.222.176] ([209.85.222.176:62054] helo=mail-pz0-f176.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id DB/22-11660-C1AC80B4 for ; Sun, 22 Nov 2009 00:20:29 -0500 Received: by pzk6 with SMTP id 6so3098349pzk.29 for ; Sat, 21 Nov 2009 21:20:26 -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=kKsQJyqC8f/zARqMKspWghZIKwwLZTMban73sDMjIvc=; b=YSln7s3AtegAj2vU7WU3VwIOO+Umk71D9afHTzwFOmxPZrazoXlO51vLdG6GS6oENB HvoRv046bGNUIZjDXTErJZuag52iY1gxtLmYH0QHKeCwvseJ3kuBcddGPrZu+3XfMhvw 6RGUfQq+/XgpBLVKERBgnbwzIMG6QIaSS/U8g= 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=mZQL8ngy+/42fTyoaATV0Z6ImpOqXk/qGVNQzTceGJP5LGeFp5up+3pui9DpL2UYDe UN4edkxWfTj8NVmE4f9txkhYKOrJKSRhVvNjiMAnrbP9lbjobIMqqhOErlM8ObAjSE8E ktdCkdeyncl4jJuoJZLbioQ15CAC/2yVrb+DU= MIME-Version: 1.0 Received: by 10.114.187.17 with SMTP id k17mr5225398waf.227.1258867226191; Sat, 21 Nov 2009 21:20:26 -0800 (PST) In-Reply-To: References: Date: Sat, 21 Nov 2009 21:20:26 -0800 Message-ID: To: Arpad Ray Cc: internals@lists.php.net Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] [PATCH] default session serialization From: mike503@gmail.com (Michael Shadle) On Sat, Nov 21, 2009 at 9:16 PM, Arpad Ray wrote: > However it would be a significant BC break, as old serialized session > records would be unreadable after upgrading. We could mitigate this by > providing a script to convert old session files. I would say just a note saying "old session files if they exist will be unreadable after this change" Also GC would not clean them up either? That might be the worse thing. Upgrading should be something people understand could mean downtime or slight changes like losing session data and it should be an acceptable loss... I use MySQL for my sessions currently; would the key for the session be changed then or only the session data? If so, only people using files would be affected anyway, right?