• Модуль: main
  • Путь к файлу: ~/bitrix/modules/main/lib/config/option.php
  • Класс: BitrixMainConfigOption
  • Вызов: Option::clearCache
static function clearCache($moduleId)
{
	unset(self::$options[$moduleId]);

	if (static::getCacheTtl() !== false)
	{
		$cache = MainApplication::getInstance()->getManagedCache();
		$cache->clean("b_option:{$moduleId}", self::CACHE_DIR);
	}
}