When I start rails server locally (rails 5.2.0, ruby 2.5.1) with this configuration in develompent.rb
config.action_controller.perform_caching = true
config.cache_store = :redis_cache_storage
with gem redis '4.0.1' installed
I've this error:
Traceback (most recent call last)
.rvm/gems/ruby-2.5.1@rails-test/gems/activesupport-5.2.0/lib/active_support/cache.rb:109:in `rescue in retrieve_store_class': Could not find cache store adapter for redis_cache_storage (cannot load such file -- active_support/cache/redis_cache_storage) (RuntimeError)
any ideas?
gem 'redis-rails', '~> 5'
in your gem file. – Hugo