1234567891011121314 |
- # The size of the executor thread pool (that can handle blocking back-end processing).
- executor.threadPool.size = 300
- # A MongoDB URI/Connection string
- # see: http://docs.mongodb.org/manual/reference/connection-string/
- mongodb.uri = mongodb://localhost:27017/hello_world?maxPoolSize=300
- # A MySQL URI/Connection string
- mysql.uri = jdbc:mysql://localhost:3306/hello_world
- # MySQL useConfigs value, See section "21.3.5.1.1. Properties Files for the useConfigs Option" of:
- # http://dev.mysql.com/doc/refman/5.6/en/connector-j-reference-configuration-properties.html
- # Empty is a valid selection.
- mysql.useConfigs = maxPerformance
|