CakeFest 2024: The Official CakePHP Conference

Kurulum

Bu PECL eklentisini kurma bilgisi kılavuzun PECL eklentisinin kurulması başlıklı faslında bulunabilir. Yeni dağıtımlar, indirmeler, kaynak dosyaları, sürdürücü bilgileri ve CHANGELOG gibi ek bilgiler şu adreste bulunabilir: » https://pecl.php.net/package/apcu.

İpucu

PHP 7 has a separate module (» apcu-bc) for backwards compatibility with APC.

In backward compatibility mode, APCu registers the applicable APC functions with backward compatible prototypes.

Where an APC function accepted cache_type, it is simply ignored by the backward compatible version, and omitted from the prototype for the APCu version.

Uyarı

As of PHP 8.0.0, apcu-bc is no longer supported.

Bilginize: On Windows, APCu needs a temp path to exist, and be writable by the web server. It checks the TMP, TEMP and USERPROFILE environment variables in that order and finally tries the WINDOWS directory if none of those are set.

Bilginize: For more in-depth, highly technical implementation details, see the »  developer-supplied TECHNOTES file .

APCu sources can be found » here.

add a note

User Contributed Notes 1 note

up
-2
Anonymous
1 year ago
To load apcu, add `extension=apcu` in file `php.ini`. Location(s) of `php.ini` can be found by hosting a php-file containing

<?php
phpinfo
( );
?>

and request that file it in a browser. That page will also show information about apcu if it is loaded.
To Top