标签: ruby-on-rails
我在缓存方面遇到了一些问题。 我无法使缓存过期,因为" touch:true"在我的协会中没有工作。
class Teaser < ApplicationRecord belongs_to :content, inverse_of: :teaser, optional: true, touch: true end
如果我更新了内容实例,则Teaser updated_at属性不会更改。
Teaser
我尝试在保存时添加回调,现在它可以正常工作......
为什么?