标签: ruby-on-rails
假设Person模型有point列和point_standard_score。
Person
point
point_standard_score
要获得标准分数,我需要使用point列来计算标准偏差。 计算它需要一些时间,所以我想像数据库一样保存它。
但我不知道在哪里可以保存所有模型实例中常用的值。
我发现我们应该避免在rails中使用类变量。 Why should we avoid using class variables @@ in rails?
我应该在哪里以及如何保存价值?