* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ /** * Class Windows, used to improve the experience * when using PrestaShop on Windows operating system. */ class WindowsCore { public static function improveFilesytemPerformances() { ini_set('realpath_cache_size', '1M'); ini_set('realpath_cache_ttl', '300'); } }