Hi, Iam using Rails 3.1.0, i tried page, action and query cache.
I was not able to do :expires_in in some minutes for Page of Action action cahe. How to do the same? I tried the code like, caches_page :index, :expires_in => 2.minutes caches_action :create, :expires_in => 2.minutes But Query cache work fine with caching and expiry when i used like this, @inc = Rails.cache.fetch("inc", :expires_in => 5.minutes) {Inc.find(:all)} Why page and action doesnt works with expires_in? It worked for me in ealier versions of rails, how to do it in Rails 3.1? I dont want to use cache stores(mem cache or dalli) Please suggest me any ways? Thanks in advance -- Posted via http://www.ruby-forum.com/. -- 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-talk@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.