Browse Source

Aligned cp size with some of the other projects being benched.

Christopher Hunt 12 years ago
parent
commit
8c71c1a46b
2 changed files with 12 additions and 12 deletions
  1. 6 6
      play-java/conf/application.conf
  2. 6 6
      play-scala/conf/application.conf

+ 6 - 6
play-java/conf/application.conf

@@ -42,10 +42,10 @@ db.default.partitionCount=4
 # database. Note that BoneCP will not create all these connections in 
 # database. Note that BoneCP will not create all these connections in 
 # one go but rather start off with minConnectionsPerPartition and 
 # one go but rather start off with minConnectionsPerPartition and 
 # gradually increase connections as required.
 # gradually increase connections as required.
-db.default.maxConnectionsPerPartition=24
+db.default.maxConnectionsPerPartition=64
 
 
 # The number of initial connections, per partition.
 # The number of initial connections, per partition.
-db.default.minConnectionsPerPartition=24
+db.default.minConnectionsPerPartition=64
 
 
 # Evolutions
 # Evolutions
 # ~~~~~
 # ~~~~~
@@ -91,11 +91,11 @@ play {
         executor = "thread-pool-executor"
         executor = "thread-pool-executor"
         thread-pool-executor {
         thread-pool-executor {
           core-pool-size-factor = 1.0
           core-pool-size-factor = 1.0
-          core-pool-size-min = 96
-          core-pool-size-max = 96
+          core-pool-size-min = 256
+          core-pool-size-max = 256
           max-pool-size-factor = 1.0
           max-pool-size-factor = 1.0
-          max-pool-size-min = 96
-          max-pool-size-max = 96
+          max-pool-size-min = 256
+          max-pool-size-max = 256
         }
         }
       }
       }
     }
     }

+ 6 - 6
play-scala/conf/application.conf

@@ -43,10 +43,10 @@ db.default.partitionCount=4
 # database. Note that BoneCP will not create all these connections in 
 # database. Note that BoneCP will not create all these connections in 
 # one go but rather start off with minConnectionsPerPartition and 
 # one go but rather start off with minConnectionsPerPartition and 
 # gradually increase connections as required.
 # gradually increase connections as required.
-db.default.maxConnectionsPerPartition=24
+db.default.maxConnectionsPerPartition=64
 
 
 # The number of initial connections, per partition.
 # The number of initial connections, per partition.
-db.default.minConnectionsPerPartition=24
+db.default.minConnectionsPerPartition=64
 
 
 # Evolutions
 # Evolutions
 # ~~~~~
 # ~~~~~
@@ -86,11 +86,11 @@ play {
         executor = "thread-pool-executor"
         executor = "thread-pool-executor"
         thread-pool-executor {
         thread-pool-executor {
           core-pool-size-factor = 1.0
           core-pool-size-factor = 1.0
-          core-pool-size-min = 96
-          core-pool-size-max = 96
+          core-pool-size-min = 256
+          core-pool-size-max = 256
           max-pool-size-factor = 1.0
           max-pool-size-factor = 1.0
-          max-pool-size-min = 96
-          max-pool-size-max = 96
+          max-pool-size-min = 256
+          max-pool-size-max = 256
         }
         }
       }
       }
     }
     }