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
path: root/config
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2015-09-29 03:50:22 +0300
committermattab <matthieu.aubry@gmail.com>2015-09-29 03:50:22 +0300
commitc8a5a17cecfde1de49f0f0c3c81630303dd7b29e (patch)
tree0d1ed71400669b3a85ecb1fb7a2ccb9256b05199 /config
parentdbffad2cfee877adb18f57cecd6936a989ade247 (diff)
Added INI setting to configure maximum number of id actions to store in one cache entry + integration tests
Diffstat (limited to 'config')
-rw-r--r--config/global.ini.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/config/global.ini.php b/config/global.ini.php
index 65bb4392b5..5d616f6cb0 100644
--- a/config/global.ini.php
+++ b/config/global.ini.php
@@ -159,6 +159,9 @@ enabled_periods_API = "day,week,month,year,range"
; whether to enable subquery cache for Custom Segment archiving queries
enable_segments_subquery_cache = 0
+; Any segment subquery that matches more than segments_subquery_cache_limit IDs will not be cached,
+; and the original subquery executed instead.
+segments_subquery_cache_limit = 100000
; when set to 1, all requests to Piwik will return a maintenance message without connecting to the DB
; this is useful when upgrading using the shell command, to prevent other users from accessing the UI while Upgrade is in progress