class UpdateTagCloud @queue = :high def self.perform() Tag.all.each do |tag| tag.update_attribute(:cloud_view_count, tag.get_impressionist) end OrbitLogger.info "UpdateTagCloud Done" end end