如果我将它存储到实例变量中,它将污染实例,因此这样做似乎不明智.
有存储这种价值的好地方吗?或者在帮手中做这么重的计算是个坏主意?
def helper_method Rails.cache.fetch('helper_value') do # calculate the value if it does not exist ... end end