I had a custom cache store set up in Rails 2.3.  I'm in the process of
upgrading to rails 3, but have run into a snag.  Before I had all the
setting in my environment.rb.  It would basically load a yaml file
with my server settings, and set up the store via config.cache_store.
It seemed like the correct place for this in Rails 3 was as an
initializer.  So I did basically the same thing, except using
MyApp::Application.config.cache_store.  I don't get any errors, but
when the app loads, Rails.cache returns
#<ActiveSupport::Cache::FileStore.

Another interesting thing is that if I load it in application.rb, it
will return the custom cache_store.  Hower, this doesn't work well for
me because Its dependent on things like Rails.env and Rails.root which
aren't initialized yet.  Any help?

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-t...@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to