Sha256: ea5cb3aeaec8448ce24068405aab4f0e4da695d236e49bffbb461035b3666787
Contents?: true
Size: 1.34 KB
Versions: 5
Compression:
Stored size: 1.34 KB
Contents
# MySQL. Versions 4.1 and 5.0 are recommended. # # Install the MYSQL driver # gem install mysql2 # # Ensure the MySQL gem is defined in your Gemfile # gem 'mysql2' # # And be sure to use new-style password hashing: # http://dev.mysql.com/doc/refman/5.0/en/old-client.html # # UMLAUT: mysql db with mysql2 adapter strongly recommended for Umlaut, in both # production and development. sqlite3 has unclear semantics under threaded # concurrency which umlaut uses, and in many cases simply does not work. # # A higher pool size than ordinary is recommended because of umlaut's # use of concurrency. Perhaps as large as the number of services # you have configured to run in the same wave, plus another few. # # development: # adapter: mysql2 # host: # username: # password: # database: # pool: 15 development: &dev adapter: mysql2 encoding: utf8 reconnect: false database: umlaut3_dev pool: 10 username: umlaut password: WbJE2RyP host: mysql.mse.jhu.edu #checkout_timeout: 4 # Warning: The database defined as "test" will be erased and # re-generated from your development database when you run "rake". # Do not set this db to the same as development or production. test: <<: *dev pool: 5 database: umlaut3_test production: <<: *dev database: umlaut3_prod # use the dev database for demo for now demo: <<: *dev
Version data entries
5 entries across 5 versions & 1 rubygems