• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Chat/ChatFactory.php
  • Класс: BitrixImV2ChatChatFactory
  • Вызов: ChatFactory::getCache
protected function getCache(int $id): Cache
{
	$cache = Application::getInstance()->getCache();

	$cacheTTL = defined("BX_COMP_MANAGED_CACHE") ? 18144000 : 1800;
	$cacheId = "chat_data_{$id}";
	$cacheDir = $this->getCacheDir($id);

	$cache->initCache($cacheTTL, $cacheId, $cacheDir);

	return $cache;
}