Hi, I (newbie) work on an application that uses the last.fm api and request the top albums from Last.fm. so I have a lastfm_controller with the action caches_view: top_albums def top_albums get_albums(params[artist]) #gets top albums from end and a top_albums.rhtml that renders a list of the albums. I want to cache the view, what works well. Now i have another mediaplayer_controller that gets the current artist from my media player. def get_mediaplayer_artist @artist = getmediaplayer.artist end In the mediaplayer.rhtml I want to include lastfm functionality. How can I include the /lastfm/top_albums/ARTIST view in the mediaplayer.rhtml. I tried to move everything to the mediaplayer_controller, and use the render call, however then I have no caching. I hope its understandable. My main problem is that I need the caching functionality of the lastfm actions. thanks -- 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---