This will cause the main cache section to be created twice:
PHP:
When using redis of memcache, this means multiple TCP sessions will be created (which may be SSL and require username/password authentication)
This is because of the following code:
PHP:
Read more
Читать далее...
PHP:
Код:
\XF::app()->cache('', false, true);
\XF::app()->cache('', false, false);
When using redis of memcache, this means multiple TCP sessions will be created (which may be SSL and require username/password authentication)
This is because of the following code:
PHP:
Код:
$key = $context;
if ($doctrineCompatible)
{
$key .= '_doctrine';
}
$cache = $this->container->create('cache', $key, [
'doctrineCompatible' =>...
Read more
Читать далее...