# File lib/ramaze/cache/redis.rb, line 141 def cache_fetch(key, default = nil) value = @client.get(key) value.nil? ? default : value end