I\'m trying to use redis-store as my Rails 3 cache_store. I also have an initializer/app_config.rb which loads a yaml file for config settings. In my initializer/redis.rb I
In the original setup you had, does it help if you change:
MyApp::Application.config.cache_store = :redis_store, APP_CONFIG['redis']
to:
MyApp::Application.config.cache_store = :redis_store, APP_CONFIG['redis'] RAILS_CACHE = MyApp::Application.config.cache_store
?