Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:127492 X-Original-To: internals@lists.php.net Delivered-To: internals@lists.php.net Received: from php-smtp4.php.net (php-smtp4.php.net [45.112.84.5]) by lists.php.net (Postfix) with ESMTPS id 3CB011A00BC for ; Wed, 28 May 2025 07:05:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1748415806; bh=Gnh7mZJtUWRAG8h8a4uKsd2zRmHlSow7jKM/TQF9/fY=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=HkKYBD+8fgmZQr7IHodBNhLktwa+adqhzLROKOLAh8SpGu2uuia8inTUlfU7BZQ50 TonPewLsYsj9NDxJOTifAoJcdwtaqHSG+H+0QgK3lcHAeVZ0nducN3DC1kZiWOhm95 qK9QhQCqFkN5qITyggC+fvIy5/msisyJmwVS7DgCh4V30Xc0zo+CzBKygoaZwZeDmr Z6gRj7GAfIWqEmgxOzW66/bBPCmafXNXHlSgw8Ki0tnAamfDYhrh9pt92vSZRCwVYp ORkI+w2nBV1gcErVXJi6dFWFVlwnwuwDaV6lM3Zp64t0t8h0jR8lQ1SbHZdKHqRh/Q yYZYEfUJM0TAA== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id AF0AD18006A for ; Wed, 28 May 2025 07:03:25 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 4.0.1 (2024-03-25) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=-2.1 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,DMARC_PASS,SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=4.0.1 X-Spam-Virus: Error (Cannot connect to unix socket '/var/run/clamav/clamd.ctl': connect: Connection refused) X-Envelope-From: Received: from chrono.xqk7.com (chrono.xqk7.com [176.9.45.72]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Wed, 28 May 2025 07:03:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bastelstu.be; s=mail20171119; t=1748415930; bh=Re+GXmsjbW/ynAwwulxXbSE4OxAO+z2LaTlhVTM0N/E=; h=MIME-Version:Date:From:To:Cc:Subject:In-Reply-To:References: Message-ID:Content-Type:from:to:cc:subject:message-id; b=nAqWSx5fRjh3MeIL1Dd2UUnkML+bsu1uOhU9XTkayx6vuNmmM9u8l/TYO+railGKq BrsZoAxqm/SJgoN3ajOGiGssUGtd0qqw3kjg/2dhjHBc/CBMQBiECzb0jUZY0+QxiC ID0ImIa7R0jrl4NOpHA9b7uPj/fQJZAxrI8OpGt1pswv06kAXH/fT9sayO36+2FHlf PgsVtITOcm2fNGiItVrhtzAeeEZFn/MOTZkCpkKYJps7VsYzaAtXDgcpVP+Y1GPUhu W4/RHrYCMceRbLMxRA9gjA7MCGjznLs5cdjfKF59SX/cZFqFA/L5KAXUwOXYV1IBHb tA0TjrVDMmqjQ== Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net x-ms-reactions: disallow MIME-Version: 1.0 Date: Wed, 28 May 2025 09:05:29 +0200 To: Sebastian Bergmann Cc: internals@lists.php.net Subject: Re: [PHP-DEV] [RFC] Make OPcache a non-optional part of PHP In-Reply-To: <4128ae7c-58ca-4531-8aea-9ad84eea75ac@php.net> References: <7bdbd839b20d233e26e7901ae093ce1b@bastelstu.be> <20250527164726.0B5181A00BD@lists.php.net> <4128ae7c-58ca-4531-8aea-9ad84eea75ac@php.net> Message-ID: <783819db62780a09d36fed91b5725fcd@bastelstu.be> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit From: tim@bastelstu.be (=?UTF-8?Q?Tim_D=C3=BCsterhus?=) Hi Am 2025-05-28 06:02, schrieb Sebastian Bergmann: >> Is this really a *need*, or is it more of a recommendation? If it's >> left in a user's configuration, what is the impact? > > A warning on startup: > > PHP Warning: Failed loading Zend extension 'opcache.so' (tried: ...) Indeed. To explain further: The `opcache.so` will no longer exist, thus the behavior is as with any other non-existent extension you are trying to load. You can already try yourself with `php -dzend_extension=does-not-exist.so` Best regards Tim Düsterhus