Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Will APC appear in PHP7?

Tags:

php

caching

apc

I read all over internet that APC will be included in PHP6. However the PHP6 project was cancelled and they skipped one major version to avoid confusion, which then again causes more confusion. This however is another discussion for another time.

My question is:

Will APC or any other cache module still be introduced, included and enabled by default in PHP7?

The reason why I am asking is because I am considering implementing memcached into my projects. But if there is a native cache solution in PHP7 i'd rather stick to that.

like image 932
Junior Avatar asked Nov 10 '22 02:11

Junior


1 Answers

PHP 7 has a built-in opcache, APC is deprecated and will not work.

Enabling PHP7 Opcache

Reference: http://php.net/manual/en/intro.opcache.php

PECL Extension: @ https://pecl.php.net/package/ZendOpcache

like image 141
MKN Web Solutions Avatar answered Nov 14 '22 23:11

MKN Web Solutions