• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/product/catalogprovider.php
  • Класс: BitrixCatalogProductCatalogProvider
  • Вызов: CatalogProvider::clearHitCache
static function clearHitCache(?string $type = null): void
	{
		if ($type === null)
		{
			self::$hitCache = [];
		}
		elseif (isset(self::$hitCache[$type]))
		{
			unset(self::$hitCache[$type]);
		}
	}