Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@googlemail.com>2014-06-24 01:41:59 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-06-24 01:41:59 +0400
commitc63131310057c6d46bcbb4605da0ad7a5050c920 (patch)
tree1227f6e3ffa4eb6f660f6e3126550fd47f7352c8 /core/Cache
parentbc31046e9c068b587cc0f3210126b345c8e3f8c6 (diff)
on my server (i7) this improves the loading time by another 500-800ms
Diffstat (limited to 'core/Cache')
-rw-r--r--core/Cache/PluginAwareStaticCache.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/Cache/PluginAwareStaticCache.php b/core/Cache/PluginAwareStaticCache.php
index 0b96f49ca1..51a7832a8c 100644
--- a/core/Cache/PluginAwareStaticCache.php
+++ b/core/Cache/PluginAwareStaticCache.php
@@ -15,6 +15,8 @@ use Piwik\Translate;
* Caching class used for static caching which is plugin aware. It'll cache the given content depending on the plugins
* that are installed. This prevents you from having to invalidate the cache during tests in case the loaded plugins
* changes etc. The key is language aware as well.
+ *
+ * TODO convert this to a decorator...
*/
class PluginAwareStaticCache extends StaticCache
{