12345678910111213141516171819202122232425 |
- ---
- _: &common
- database: hello_world
- username: benchmarkdbuser
- password: benchmarkdbpass
- host: tfb-database
- timeout: 5000
- development:
- <<: *common
- pool: 5
- test:
- <<: *common
- pool: 64
- production_mysql:
- <<: *common
- adapter: mysql2
- pool: 64
- production_postgresql:
- <<: *common
- adapter: postgresql
- pool: 64
|