Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:59998 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 94246 invoked from network); 16 Apr 2012 13:09:17 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 16 Apr 2012 13:09:17 -0000 Authentication-Results: pb1.pair.com header.from=tom@punkave.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=tom@punkave.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain punkave.com designates 209.85.216.170 as permitted sender) X-PHP-List-Original-Sender: tom@punkave.com X-Host-Fingerprint: 209.85.216.170 mail-qc0-f170.google.com Received: from [209.85.216.170] ([209.85.216.170:39506] helo=mail-qc0-f170.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 9E/C4-05733-CF91C8F4 for ; Mon, 16 Apr 2012 09:09:17 -0400 Received: by qcmt36 with SMTP id t36so3418093qcm.29 for ; Mon, 16 Apr 2012 06:09:14 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=references:in-reply-to:mime-version:content-transfer-encoding :content-type:message-id:cc:x-mailer:from:subject:date:to :x-gm-message-state; bh=o4qWu/ng7FMqt05Ay7+PHgKK4xtQhh9qyiTJOOXq10Q=; b=iiXE8tJxLvm1nEFGTwNoq2/oNyfzC7JWZ4D8r9VnLjWqS3DBG9Huhg661O3Yvi3JPl WUKyZPa8XgDwolLPfauhmhCHdrQ3p5js3R4E6tIO4DoWFxzXULjrtlu5uOxbQBWKcxY0 Sl4NFwVw3jr/BAKXHzHvZ/OxRTev8apWhkMew5ex4ciOm7HF0oLsbLeqsEDrVXLvjI8V QelAT16w7cJqy4pSlCSOfiaCNYobt+/E3r2VxRZlMYJKZfUYcCVqFx7jNjsaGJz89qt7 082y3oEqNeCFXEyFAO6aWzNa2u114Agi8Lg7EbmYLeqwACoi0oonCRsdlSenfna+O+K8 ObUA== Received: by 10.229.106.151 with SMTP id x23mr4598037qco.14.1334581754021; Mon, 16 Apr 2012 06:09:14 -0700 (PDT) Received: from [192.168.100.101] (c-68-81-107-211.hsd1.pa.comcast.net. [68.81.107.211]) by mx.google.com with ESMTPS id i8sm34201393qah.4.2012.04.16.06.09.11 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 16 Apr 2012 06:09:12 -0700 (PDT) Hn-8vaP59iu7-A@mail.gmail.com> In-Reply-To: Mime-Version: 1.0 (1.0) Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii Message-ID: <4CF91067-DBC4-4CD7-AF91-1814A6999EEF@punkave.com> Cc: "internals@lists.php.net" X-Mailer: iPhone Mail (9B176) Date: Mon, 16 Apr 2012 09:09:10 -0400 To: Arvids Godjuks X-Gm-Message-State: ALoCoQnAT+i7lvtRsFj/kpn+tP2DeENnhuFY6nhMd7l2EfDkUg3KP3yMWzZ/1yRSTVvUOdRwP/hW Subject: Re: [PHP-DEV] [RFC] New .phpp File Type for Pure-Code PHP Scripts From: tom@punkave.com (Tom Boutell) These tools already strip wrote= : > I posted the bellow text in other thread, but i should have it post here, > so i'm reposting it to this thread. >=20 > Well, it's time for me to remind about the techique many use (and some > frameworks provide it out of the box) - the application file concatination= > to speed up file loading. > Yii framework provides a Yiilite.php file for this, that includes mostly > used core classes in one big file.that loads much faster and is used for > production. Any other framework has user extentions or other type of > solutions for this to speed up the application, and it makes really big > difference. > So there is a good question - how the hell in a MVC framework would i > combine my models, controllers, components and other stuff that will > definetly be as in .php so in .pphp. And not every file will be cached lik= e > that - some will remain as distinct files even in production. >=20 > The further discussion goes the more questions there is and less answers > there are.