# File lib/typhoeus/request/cacheable.rb, line 13
      def run
        if cacheable? && response = cache.get(self)
          response.cached = true
          finish(response)
        else
          super
        end
      end