method
cache_store
v3.0.0 -
Show latest stable
- Class:
Rails::Application::Configuration
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