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
More esoteric ways:
Rails.cache.delete_matched("*")
For Redis:
Redis.new.keys.each{ |key| Rails.cache.delete(key) }