Rails祖先宝石重建缓存



我在Rails3应用程序中使用gem ancestry

我正在尝试更改一个名为sites的现有模型以使用缓存深度。

文档是这样说的:

:cache_depth           Cache the depth of each node in the 'ancestry_depth' column (default: false)
                   If you turn depth_caching on for an existing model:
                   - Migrate: add_column [table], :ancestry_depth, :integer, :default => 0
                   - Build cache: TreeNode.rebuild_depth_cache!

我添加了迁移。

但是,我不明白如何执行- Build cache: TreeNode.rebuild_depth_cache!

我在哪里做?

谢谢你的帮助!

使用具有祖先的模型。例子:

class Site
  has_ancestry cache_depth: true
end
> Site.rebuild_depth_cache!

相关内容

  • 没有找到相关文章

最新更新