Revision 5fdf60c698760eda387286d5885ffe67ee32191f

Committed on 19/12/2017 11:18 pm by André R <ar@ez.no> [GitHub Diff]

[Cache] Skip class cache on PHP 7 like Symfony 3.x does by default

On PHP 7 in combination with composer optimized aultoad, class cache
does not provide any speed benefit anylonger. Only downsides like code
breaking on interface changes when doing composer update or deploying
new code on old cache.

Addtional benefit whith this is for platform.sh where cache is currently
placed on shared mount, meaning:
- This change will likly speed up p.sh installs
- Tiny bit less files on cache mount to clear
- The issue mentioned above, given deployes shares cache will be avoided
At least for class cache, there are still similar issues in rare cases
on proxies generated for lazy services.