...
Replace database.yml with the correct values for your production environment. Note that the pool setting should be equal or exceed the number of concurrent jobs in Sidekiq.
Code Block |
---|
production: adapter: mysql2 host: localhost database: rails username: rails password: rails pool: 520 timeout: 5000 |
Install the mysql2 adapter
...