rails 3 caching: expire action for named route

前端 未结 3 823
北荒
北荒 2021-01-05 14:38

My controller has this:

caches_action :render_ticker_for_channel, :expires_in => 30.seconds

In my routes file I have this:



        
3条回答
  •  难免孤独
    2021-01-05 14:59

    Use the regex version of expire_fragment:

    expire_fragment %r{render_c_t/#{c.id}/}
    

提交回复
热议问题