Play with solid_cache (#34)

Reviewed-on: #34
This commit is contained in:
Andrew Tomaka 2024-09-08 21:51:16 -04:00
parent bfc017153f
commit 0a25c2ae9a
7 changed files with 53 additions and 6 deletions

View file

@ -10,8 +10,14 @@ default: &default
timeout: 5000
development:
<<: *default
database: db/development.sqlite3
primary:
<<: *default
database: db/development.sqlite3
cache:
<<: *default
database: db/development_cache.sqlite3
migrations_paths: db/cache_migrate
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
@ -21,5 +27,10 @@ test:
database: db/test.sqlite3
production:
<<: *default
database: db/production.sqlite3
primary:
<<: *default
database: storage/production.sqlite3
cache:
<<: *default
database: storage/production_cache.sqlite3
migrations_paths: db/cache_migrate