From: Yugo Nagata Date: Mon, 1 Oct 2012 05:30:50 +0000 (+0900) Subject: Revise the default value of relcache_size from 0 to 256. X-Git-Tag: V3_2_1~2 X-Git-Url: http://git.postgresql.org/gitweb/static/%7B%7Bpguslink%28?a=commitdiff_plain;h=d207929d4ee320a56898e681db3f6cc46f8c3155;p=pgpooladmin.git Revise the default value of relcache_size from 0 to 256. --- diff --git a/definePgpoolConfParam.php b/definePgpoolConfParam.php index 1e3cf2b..e4a7655 100644 --- a/definePgpoolConfParam.php +++ b/definePgpoolConfParam.php @@ -697,7 +697,7 @@ $pgpoolConfigParam[$key]['max'] = NUM_MAX; $key = 'relcache_size'; $pgpoolConfigParam[$key]['type'] = 'N'; -$pgpoolConfigParam[$key]['default'] = 0; +$pgpoolConfigParam[$key]['default'] = 256; $pgpoolConfigParam[$key]['min'] = 0; $pgpoolConfigParam[$key]['max'] = NUM_MAX;