Displaying 1 result from an estimated 1 matches for "get_tag_cloud".
2008 Nov 19
3
Rails.cache and problem with model id?
I have the following:
MODEL:
  def self.get_tag_cloud
    Rails.cache.fetch(''fetish_tag_cloud'', :expires_in => 1.hour) do
      find(:all, :conditions => [ "approved_for_tag_cloud = true"], :order
=> "LTRIM(name)")
    end
  end
CONTROLLER:
  def index
    @fetishes = Fetish.get_tag_cloud
  end
VIEW:...