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

		if (!isset(self::$hitCache[$type][$key]))
		{
			self::$hitCache[$type][$key] = [];
		}

		self::$hitCache[$type][$key] = $value;
	}