How can I install APCu in Windows?
I found this. But I need a solution for Windows.
I use PHP 5.5.6 (I have the XAMPP package).
This short and straight to the point tutorial should help you
Assumptions
Instructions
Pre: All directory locations might be different for you depending on your wamp installation folder and your PHP/apache versions.
php_apcu.dll
in C:\wamp\bin\php\php5.5.6\ext
.Go to C:\wamp\bin\apache\apache2.4.9\bin
open php.ini
and add the following lines (I just added them at the end of the file):
[apcu]
extension=php_apcu.dll
apc.enabled=1
apc.shm_size=32M
apc.ttl=7200
apc.enable_cli=1
apc.serializer=php
This are recommended configurations located in INSTALL file from the php_apcu archive, excepting the location of the DLL file.
Restart wamp
C:\wamp\bin\php\php5.5.6\bin\php.ini
the config lines you added at step 5 in apache's php.ini.The end!