# Performance ## OPcache inschakelen In `php.ini`: ```ini opcache.enable=1 opcache.memory_consumption=128 opcache.max_accelerated_files=10000 ``` ## SCSS caching SCSS wordt gecompileerd met caching: ```php $themeManager->compileCss(false); // Gebruik cache indien mogelijk ```