Navigation Menu

Skip to content

Commit

Permalink
A slight improvement in the efficiency of the Cache Sweeper
Browse files Browse the repository at this point in the history
Suggested by Andrew Stacey
  • Loading branch information
distler committed Sep 21, 2011
1 parent d30bd11 commit b6c0ffa
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions app/controllers/revision_sweeper.rb
Expand Up @@ -18,7 +18,15 @@ def after_save(record)
expire_caches(record.page)
end
end


def after_create(record)
if record.is_a?(Page)
WikiReference.pages_that_reference(record.web, record.name).each do |page_name|
expire_cached_page(record.web, page_name)
end
end
end

def after_delete(record)
if record.is_a?(Page)
expire_caches(record)
Expand All @@ -33,7 +41,7 @@ def self.expire_page(web, page_name)

def expire_caches(page)
expire_cached_summary_pages(page.web)
pages_to_expire = ([page.name] + WikiReference.pages_that_reference(page.web, page.name) +
pages_to_expire = ([page.name] +
WikiReference.pages_redirected_to(page.web, page.name) +
WikiReference.pages_that_include(page.web, page.name)).uniq
pages_to_expire.each { |page_name| expire_cached_page(page.web, page_name) }
Expand Down

0 comments on commit b6c0ffa

Please sign in to comment.