method

cache_store

cache_store()
public

No documentation available.

# File railties/lib/rails/application/configuration.rb, line 89
      def cache_store
        @cache_store ||= begin
          if File.exist?("#{root}/tmp/cache/")
            [ :file_store, "#{root}/tmp/cache/" ]
          else
            :memory_store
          end
        end
      end