Files
fizzy/config/cache.yml
T
Mike Dalessio c3a9ac7391 Create a distinct "beta" environment
and move secrets into Rails credentials for both beta and production
environments.
2025-05-31 10:57:26 -04:00

26 lines
503 B
YAML

default_options: &default_options
store_options:
# Cap age of oldest cache entry to fulfill retention policies
# max_age: <%= 60.days.to_i %>
max_size: <%= 256.megabytes %>
namespace: <%= Rails.env %>
default_connection: &default_connection
connects_to:
database:
writing: :cache
development:
<<: *default_connection
<<: *default_options
test:
<<: *default_options
production: &production
<<: *default_connection
<<: *default_options
beta:
<<: *production