Hello,
Into:
stat/core/Piwik.php
public function serveStaticFile($file, $contentType, $expireFarFuture = true)
I have do:
//self::overrideCacheControlHeaders('public');
@header('Cache-Control:max-age=31536000');
@header('Pragma: cache');
That's do a clear advantage on 3g internet connexion like mine (with latency). (10s -> 1s).
You should considere use it.
Into:
stat/core/Piwik.php
public function serveStaticFile($file, $contentType, $expireFarFuture = true)
I have do:
//self::overrideCacheControlHeaders('public');
@header('Cache-Control:max-age=31536000');
@header('Pragma: cache');
That's do a clear advantage on 3g internet connexion like mine (with latency). (10s -> 1s).
You should considere use it.