1

我需要一个不会被继承的类变量,所以我决定使用一个类实例变量。目前我有这个代码:

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 而不制动任何东西吗?目前我所有的测试都通过了,但我仍然不确定是否可以这样做。

4

1 回答 1

1

由于您希望使用实例变量,因此应使用类的实例,而不是单例方法:

class A
  def symbols
    history_symbols    
  end

  private

  def history_tables
    @history_tables ||= ActiveRecord::Base.connection.tables.select do |x|
      x.starts_with?(SOME_PREFIX)
    end
  end

  def history_symbols
    Rails.cache.fetch('history_symbols', expires_in: 10.minutes) do
      history_tables.map { |x| x.sub(SOME_PREFIX, '') }
    end
  end
end

A.new.symbols

代替:

A.symbols
于 2014-02-07T14:09:31.357 回答