Ruby on Rails: Clear a cached page

前端 未结 6 1468
野的像风
野的像风 2020-12-07 12:56

I have a RoR application (ruby v1.8.7; rails v2.3.5) that is caching a page in the development environment. This wouldn\'t be so much of an issue, but the cached page\'s

6条回答
  •  悲&欢浪女
    2020-12-07 13:23

    More esoteric ways:

    Rails.cache.delete_matched("*")
    

    For Redis:

    Redis.new.keys.each{ |key| Rails.cache.delete(key) }
    

提交回复
热议问题