Revise the default value of relcache_size from 0 to 256.
authorYugo Nagata <nagata@sraoss.co.jp>
Mon, 1 Oct 2012 05:30:50 +0000 (14:30 +0900)
committerYugo Nagata <nagata@sraoss.co.jp>
Mon, 1 Oct 2012 05:30:50 +0000 (14:30 +0900)
definePgpoolConfParam.php

index 1e3cf2b518f6f23b00dadd28f8e937545ceb64ae..e4a7655a5e8cfe6d99f46e04ba7778b862201b48 100644 (file)
@@ -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;