Hi, I am realizing my first application in Rails (with tutorials), I implement a pagination solution with will_paginate gem, it works well but the problem is: changing pages is very slow and I think the query is executed every time the page is changing Is there a solution to get faster pagination I am thinking about redis, is there a way to use it with will_paginate
the query : User.find(:all,:order => "name") (I am using mysql) regards, -- 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 [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

