Merged in clint-mvcc (pull request #366)

Improved concurrency of H2 database with config
This commit is contained in:
Clinton Alexander 2016-09-28 16:51:27 +01:00
commit a740167100

View File

@ -6,7 +6,7 @@ keyStorePassword = "cordacadevpass"
trustStorePassword = "trustpass"
dataSourceProperties = {
dataSourceClassName = org.h2.jdbcx.JdbcDataSource
"dataSource.url" = "jdbc:h2:"${basedir}"/persistence;DB_CLOSE_ON_EXIT=FALSE"
"dataSource.url" = "jdbc:h2:"${basedir}"/persistence;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=10000;MVCC=true;MV_STORE=true"
"dataSource.user" = sa
"dataSource.password" = ""
}