# File lib/action_controller/caching/fragments.rb, line 102 def fragment_exist?(key, options = nil) return unless cache_configured? key = fragment_cache_key(key) self.class.benchmark "Cached fragment exists?: #{key}" do cache_store.exist?(key, options) end end