我需要一个不会被继承的类变量,所以我决定使用一个类实例变量。目前我有这个代码:
class A
def self.symbols
history_symbols
end
private
def self.history_tables
@@history_tables ||= ActiveRecord::Base.connection.tables.select do |x|
x.starts_with?(SOME_PREFIX)
end
end
def self.history_symbols
Rails.cache.fetch('history_symbols', expires_in: 10.minutes) do
history_tables.map { |x| x.sub(SOME_PREFIX, '') }
end
end
end
我可以安全地将@@history_tables 转换为@history_tables 而不制动任何东西吗?目前我所有的测试都通过了,但我仍然不确定是否可以这样做。