Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Laravel 4 上的 Ruby on Rails 中实现 counter_cache?我必须手动完成吗?
在 Ruby 中,我刚刚做了:counter_cache to true
:counter_cache to true
您可以使用
DB::table('yourtable')->increment('your_column');
这有帮助吗?
编辑:你想要模型事件。例如,您可以在每次更新模型时增加一个计数器列。