From a45190973d6c6a3876b191e4a3ae7368602f7ee7 Mon Sep 17 00:00:00 2001 From: bjl23 Date: Mon, 13 Dec 2010 15:24:54 +0000 Subject: [PATCH] NIHVIVO-1509 connection pool size configuration --- example.deploy.properties | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/example.deploy.properties b/example.deploy.properties index 38034236..ec5fa830 100644 --- a/example.deploy.properties +++ b/example.deploy.properties @@ -63,15 +63,18 @@ Vitro.smtpHost = # # The basic parameters for a MySQL database connection. Change the end of the # URL to reflect your database name (if it is not "vitro"). Change the username -# and password to match the authorized user you created in MySQL. +# and password to match the authorized user you created in MySQL. Increase the +# maximum size of the database connection pool if you need to serve a greater +# number of concurrent page requests. # VitroConnection.DataSource.url = jdbc:mysql://localhost/vitrodb VitroConnection.DataSource.username = vitrodbUsername VitroConnection.DataSource.password = vitrodbPassword +VitroConnection.DataSource.pool.maxActive = 320 # # The name of your first admin user for the VIVO application. The password for # for this user is initially set to "defaultAdmin", but you will be asked to # change the password the first time you login. # -initialAdminUser = defaultAdmin \ No newline at end of file +initialAdminUser = defaultAdmin