Sha256: de2604d1f698a951734403c45da4d3d2b9d9cf362b64a0da279ba6fe244215f6
Contents?: true
Size: 1.6 KB
Versions: 1
Compression:
Stored size: 1.6 KB
Contents
# SQLite version 3.x # gem install sqlite3 # # Ensure the SQLite 3 gem is defined in your Gemfile # gem 'sqlite3' # default: &default adapter: sqlite3 pool: 5 timeout: 5000 # # 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: <<: *default database: db/development.sqlite3 # 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: <<: *default database: db/test.sqlite3 production: <<: *default database: db/production.sqlite3 # # UMLAUT: for the 'search' functions (A-Z title lookup) to work, you need # a direct database connection to the SFX database, under 'sfx_db' key. # You should manually set up a new read-only MySQL account in the SFX db # for this purpose, rather than use one of the full-access existing SFX # mysql accounts. # #sfx_db: # adapter: mysql2 # host: my_sfx_host.u.edu # port: 3310 # 3310 is defualt SFX embedded mysql port # database: sfxlcl41 # or other sfx instance db # username: # password: # pool: 5 # encoding: utf8 #
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
umlaut_journal_tocs-0.0.1 | test/dummy/config/database.yml |