CSS delivery from cache is inefficient

Status
This content is read-only, or is not open for further replies.

Kirby

Guest
offline
If configured and possible, XenForo stores rendered CSS in a cache using the configured provider (Memcached, Redis, etc.) in \XF\CssRenderer::cacheFinalOutput
PHP:

Code:
protected function cacheFinalOutput(array $templates, $output)
{
        if (!is_string($output) || !strlen($output))
        {
                return;
        }

        if ($this->allowCached && $this->allowFinalCacheUpdate && $this->cache && $this->includeExtraParams)
        {...

Read more

Continue reading...
 
Liked by:
Status
This content is read-only, or is not open for further replies.
Top Bottom