• Модуль: cluster
  • Путь к файлу: ~/bitrix/modules/cluster/classes/general/memcache_cache.php
  • Класс: CPHPCacheMemcacheCluster
  • Вызов: CPHPCacheMemcacheCluster::__construct
function __construct($options = [])
{
	parent::__construct([
		'servers' => static::LoadConfig(),
		'type' => 'memcache'
	]);

	if (defined("BX_CLUSTER_GROUP"))
	{
		$this->bQueue = true;
	}

	$this->sid = BX_MEMCACHE_CLUSTER . $this->sid;
}