Method: Scrivito::Configuration.cache_path=
- Defined in:
- app/cms/scrivito/configuration.rb
.cache_path=(path) ⇒ Object
Set the path for the filesystem cache.
Scrivito
makes heavy use of filesystem caching. Use this method to configure the directory that should be used to store cached data. By default, RAILS_ROOT/tmp/scrivito_cache
will be used.
106 107 108 |
# File 'app/cms/scrivito/configuration.rb', line 106 def self.cache_path=(path) CmsDataCache.cache_path = path end |