From 3b2adbcda30b25be42017c95620b6fa8292fef0b Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Wed, 18 Jan 2017 16:27:17 -0800 Subject: [PATCH] Add more $wgPoolCounterConf comments Change-Id: Ic7b376dcada2b58a2f2ddc13b79e392e9d4fae6f --- includes/DefaultSettings.php | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 566d4aa9ba..086b615e42 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -8231,7 +8231,19 @@ $wgRedirectOnLogin = null; * The remaining elements are passed through to the class as constructor * parameters. * - * @par Example: + * @par Example using local redis instance: + * @code + * $wgPoolCounterConf = [ 'ArticleView' => [ + * 'class' => 'PoolCounterRedis', + * 'timeout' => 15, // wait timeout in seconds + * 'workers' => 1, // maximum number of active threads in each pool + * 'maxqueue' => 5, // maximum number of total threads in each pool + * 'servers' => [ '127.0.0.1' ], + * 'redisConfig' => [] + * ] ]; + * @endcode + * + * @par Example using C daemon from https://www.mediawiki.org/wiki/Extension:PoolCounter: * @code * $wgPoolCounterConf = [ 'ArticleView' => [ * 'class' => 'PoolCounter_Client', @@ -8239,7 +8251,7 @@ $wgRedirectOnLogin = null; * 'workers' => 5, // maximum number of active threads in each pool * 'maxqueue' => 50, // maximum number of total threads in each pool * ... any extension-specific options... - * ]; + * ] ]; * @endcode */ $wgPoolCounterConf = null; -- 2.20.1