NIHVIVO-2306 Added VitroConnection.DataSource properties (minus VitroConnection.DataSource.tripleStoreType which will soon be obsolete)
This commit is contained in:
parent
3a2169ec13
commit
1ef03e8471
1 changed files with 21 additions and 0 deletions
|
@ -52,6 +52,27 @@ VitroConnection.DataSource.url = jdbc:mysql://localhost/vitro
|
|||
VitroConnection.DataSource.username = vitroweb
|
||||
VitroConnection.DataSource.password = vitrovitro
|
||||
|
||||
#
|
||||
# The maximum number of active connections in the database connection pool.
|
||||
# Increase this value to support a greater number of concurrent page requests.
|
||||
#
|
||||
VitroConnection.DataSource.pool.maxActive = 40
|
||||
|
||||
#
|
||||
# The maximum number of database connections that will be allowed
|
||||
# to remain idle in the connection pool. Default is 25%
|
||||
# of the maximum number of active connections.
|
||||
#
|
||||
VitroConnection.DataSource.pool.maxIdle = 10
|
||||
|
||||
#
|
||||
# Parameters to change in order to use VIVO with a database other than
|
||||
# MySQL.
|
||||
#
|
||||
VitroConnection.DataSource.dbtype = MySQL
|
||||
VitroConnection.DataSource.driver = com.mysql.jdbc.Driver
|
||||
VitroConnection.DataSource.validationQuery = SELECT 1
|
||||
|
||||
#
|
||||
# The URL to connect to for the Solr service that is used by the application.
|
||||
# The Solr service provides the application with full text search and many
|
||||
|
|
Loading…
Add table
Reference in a new issue