CakeFest 2024: The Official CakePHP Conference

Instalación

Si se requiere retrocompatibilidad con las partes de APC aplicables APCu debe configurarse con la opción --enable-apcu-bc.

Advertencia

PHP 7 tiene un módulo aparte (» apc.so) para la retrocompatibilidad con APC.

En el modo de retrocompatibilidad, APCu registra las funciones de APC aplicables con prototipos retrocompatibles.

Si una función de APC aceptaba cache_type, la ignora simplemente la versión retrocompatible, and omitted from the prototype for the APCu version.

Nota: En Windows, APC necesita una ruta temporal donde ubicarse, y debe ser escribible por el servidor web. Comprueba las variables de entorno TMP, TEMP y USERPROFILE, en este orden, y finalmente intenta el directorio WINDOWS si ninguno de los anteriores está establecido.

Nota: Para detalles de implementación más profundos y altamente téctino, veáse el »  fichero TECHNOTES porporcionado por el desarrollador .

Los ficheros fuentes de APCu se pueden encontrar » aquí.

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