• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/repository/location/cache.php
  • Класс: Bitrix\Location\Repository\Location\Cache
  • Вызов: Cache::saveDataToCache
public function saveDataToCache(): void
{
	if($this->isItemChanged)
	{
		$this->cache->forceRewriting(true);
		$this->cache->startDataCache();
		$this->cache->endDataCache([
			'items' => $this->pool->getItems(),
			'idMap' => $this->idMap,
			'externalIdMap' => $this->externalIdMap
		]);
	}
}