# Performance ## Enabling OPcache In `php.ini`: ```ini opcache.enable=1 opcache.memory_consumption=128 opcache.max_accelerated_files=10000 ``` ## SCSS caching SCSS is compiled with caching: ```php $themeManager->compileCss(false); // Use cache when possible ```