Commit a938d582 authored by Holger Just's avatar Holger Just

[#780] Clarify deprecation of Setting.clear_cache

parent 33a8baf3
......@@ -140,6 +140,7 @@ class Setting < ActiveRecord::Base
# Deprecation Warning: This method is no longer available. There is no
# replacement.
def self.check_cache
# DEPRECATED SINCE 3.0.0beta2
ActiveSupport::Deprecation.warn "The Setting.check_cache method is " +
"deprecated and will be removed in the future. There should be no " +
"replacement for this functionality needed."
......@@ -147,9 +148,12 @@ class Setting < ActiveRecord::Base
# Clears all of the Setting caches
def self.clear_cache
# DEPRECATED SINCE 3.0.0beta2
ActiveSupport::Deprecation.warn "The Setting.clear_cache method is " +
"deprecated and will be removed in the future. There should be no " +
"replacement for this functionality needed."
"replacement for this functionality needed. To sweep the whole " +
"cache Rails.cache.clear may be used. To invalidate the Settings " +
"only, you may use Setting.first.try(:touch)"
end
private
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment