* @copyright 2007-2019 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ /** * 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'); } }