I am a relative newbie to Rails and Mongoid so apologies if the answer to this question should be obvious. :)
I'm building a Rails 3 app that will allow users to find Movies based on the attributes for the movies. I have a MoviesController with an index action that allows the user to sort based on attributes in the Movie model (like genre, studio, etc.).
I've come up with the following solution, but this doesn't feel sustainable as it's already started to slow down as my db has grown.
# controllers/movies_controller.rb
def index
if params[:genre]
@movies = Movie.where(:genre => params[:genre])
elsif params[:studio]
@movies = Movie.where(:studio => params[:studio])
else
@movies = Movie.all
end
end
# views/movies/index.html.erb
<li><%= link_to "Action", movies_path(:genre => "Action") %></li>
<li><%= link_to "Suspense", movies_path(:genre => "Suspense") %></li>
<li><%= link_to "Drama", movies_path(:genre => "Drama") %></li>
...
<li><%= link_to "Paramount", movies_path(:studio => "Paramount") %></li>
<li><%= link_to "Universal", movies_path(:studio => "Universal") %></li>
<li><%= link_to "Disney", movies_path(:studio => "Disney") %></li>
...
I've explored action and fragment caching to speed things up, but I have to think there's a better way to do this.
Thanks in advance for your help!