Methods

Instance Public methods

cache_store()

📝 Source code
# File actionpack/lib/abstract_controller/caching.rb, line 13
      def cache_store
        config.cache_store
      end
🔎 See on GitHub

cache_store=(store)

📝 Source code
# File actionpack/lib/abstract_controller/caching.rb, line 17
      def cache_store=(store)
        config.cache_store = ActiveSupport::Cache.lookup_store(*store)
      end
🔎 See on GitHub